text
stringlengths 1
22.8M
|
|---|
Drayton is a village and civil parish about south of Abingdon, Oxfordshire. It was part of Berkshire until the 1974 boundary changes transferred it to Oxfordshire. The parish includes the hamlet of Sutton Wick. The 2011 Census recorded the parish population as 2,353.
Archaeology
Two sites of former settlements in the parish are scheduled monuments. One is about north of the village at Sutton Wick, overlapping the parish boundary with Abingdon. The other is around Brook Farm, about southeast of the village. An episode of the Channel 4 television series Time Team called "In the Halls of a Saxon King", first transmitted on 5 September 2010, investigated archaeological sites from various periods between Drayton and its eastern neighbour Sutton Courtenay. They included a Neolithic site called the Drayton Cursus. In 1965 a late Saxon sword was found during ploughing on a field beside Barrow Lane. It is similar to swords found at Windsor, Berkshire and Gooderstone, Suffolk.
Toponym
The earliest known forms of Drayton's toponym are the Old English Drægtune and Draigtun from the 10th century. It evolved through Draitune in the 10th and 11th centuries, Draitun from the 11th to the 13th century and Drettun in the 12th century. The current spelling of the name has been used since the 13th century.
Manor
In 955 King Eadred granted 10 hides of land at Drayton to a thegn called Eadwold. Eadred's successors confirmed the grant. Eadwold left the estate to Abingdon Abbey but King Æthelred II, who was crowned in 978, seems to have held the manor, as in 983 he granted three hides of it to his butler, Wulfgar. In 1000 Æthelred granted the same three hides plus a watermill at Drayton to Abingdon Abbey. In the 11th century the land seems to have been divided into two manors: West and East Drayton. The oldest parts of Drayton's current Manor House are 15th century. A wing was added in the 18th century and the front is early 20th century. The house is a Grade II* listed building.
Churches
Church of England
The oldest parts of the Church of England parish church of Saint Peter are Norman, built about 1200. The Perpendicular Gothic west tower and four-bay north aisle were added in the 15th century. The south transept was rebuilt about 1855 and the chancel was rebuilt in 1872. In 1879 the church was restored and the south porch was added, both to designs by the Gothic Revival architect Edwin Dolby. St Peter's was restored again in 1959 after it was damaged by a fire. It is a Grade II* listed building. The tower has a ring of eight bells. Mears and Stainbank of the Whitechapel Bell Foundry cast a ring of six for the tower in 1871. The same founders added the present treble and tenor bells in 1880, increasing the ring to eight. There is also a sanctus bell that one of the Wells family of bellfounders of Aldbourne, Wiltshire, cast in about 1780.
Chapels
A Baptist chapel was built in 1834 and is now Drayton Baptist Church. A Wesleyan chapel was built in 1870 but is no longer used for worship.
Economic and social history
Drayton had a watermill by 1000, when Wulfgar granted it in fee to Abingdon Abbey. From 1652 to 1823 Drayton had three watermills. One survives on Mill Brook, southeast of the village. Drayton is said to have had five dovecotes between 1793 and 1823. In 1517 an inquiry found that enclosure of arable land at Drayton had put 16 labourers and their families out of work. In 1810–11 Parliament passed an inclosure act for the remaining common land in the parish. The inclosure award was made in 1815. 69 High Street is a 15th-century cruck cottage. In 1780 an extensive fire destroyed a number of homes in the village. In 1924 Drayton still held traditional celebrations on May Day and performed a Mummers play at Christmas.
The route of the abandoned Wilts & Berks Canal passes through the northwest of Drayton parish, about northwest of the village. Building had begun in 1796 at Semington Junction in Wiltshire and reached West Challow in 1807. The final section, from West Challow through Drayton to Abingdon, was completed in 1810. The canal made a long descent from its summit pound near Swindon to the River Thames at Abingdon. Drayton Lock, in the parish is west of the village, was the final lock in the descent, bringing the canal down to the River Ock floodplain. Traffic on the canal had virtually ceased by 1901 and the route was formally abandoned in 1914. The Wilts & Berks Canal Trust is currently restoring the canal.
Drayton is on what used to be the main road between Oxford, Abingdon and Newbury. The section from Oxford and Abingdon through Drayton to Chilton Pond was turnpiked in 1755. From the 1920s it was classified as the A34 road. In the 1970s the A34 was re-routed as a dual carriageway bypassing Abingdon, Drayton and Steventon, and the section between Steventon Hill and Abingdon was detrunked and reclassified as the B4017. In June 1840 the Great Western Railway reached Steventon, south of Drayton. Steventon station was the nearest station to Drayton until British Railways closed it in 1964. The nearest main line station is now , about southeast of Drayton.
Amenities
Drayton has two pubs, the Red Lion (controlled by Greene King Brewery) and the Wheatsheaf. Morland Brewery of Abingdon, which Greene King took over and closed down in 2000, used to control both pubs. Drayton has a community primary school.
Twinning
Since 2000 Drayton has been twinned with Lesparre-Médoc, a commune in the French département of Gironde.
Gallery
References
Sources
External links
Drayton Village
Civil parishes in Oxfordshire
Villages in Oxfordshire
|
Toowong railway station is located on the Main line in Queensland, Australia. It serves the Brisbane suburb of Toowong. It is the closest station to the St Lucia campus of the University of Queensland.
History
Toowong station opened on 14 June 1875. The station was submerged during the 1893 floods.
The station was rebuilt in 1960 as part of the quadruplication of the line. In the 1980s, the air rights were sold and redeveloped as the Toowong Village shopping centre.
Services
Toowong is served by City network services operating from Nambour, Caboolture, Kippa-Ring and Bowen Hills to Springfield Central, Ipswich and Rosewood.
Services by platform
*Note: One weekday morning service (4:56am from Central) and selected afternoon peak services continue through to Rosewood. At all other times, a change of train is required at Ipswich.
References
External links
Toowong station Queensland Rail
Toowong station Queensland's Railways on the Internet
Railway stations in Brisbane
Railway stations in Australia opened in 1875
Toowong
Main Line railway, Queensland
|
```go
package criteria
import (
"errors"
"fmt"
"reflect"
"strconv"
"time"
"github.com/Masterminds/squirrel"
)
type (
All squirrel.And
And = All
)
func (all All) ToSql() (sql string, args []interface{}, err error) {
return squirrel.And(all).ToSql()
}
func (all All) MarshalJSON() ([]byte, error) {
return marshalConjunction("all", all)
}
type (
Any squirrel.Or
Or = Any
)
func (any Any) ToSql() (sql string, args []interface{}, err error) {
return squirrel.Or(any).ToSql()
}
func (any Any) MarshalJSON() ([]byte, error) {
return marshalConjunction("any", any)
}
type Is squirrel.Eq
type Eq = Is
func (is Is) ToSql() (sql string, args []interface{}, err error) {
return squirrel.Eq(mapFields(is)).ToSql()
}
func (is Is) MarshalJSON() ([]byte, error) {
return marshalExpression("is", is)
}
type IsNot squirrel.NotEq
func (in IsNot) ToSql() (sql string, args []interface{}, err error) {
return squirrel.NotEq(mapFields(in)).ToSql()
}
func (in IsNot) MarshalJSON() ([]byte, error) {
return marshalExpression("isNot", in)
}
type Gt squirrel.Gt
func (gt Gt) ToSql() (sql string, args []interface{}, err error) {
return squirrel.Gt(mapFields(gt)).ToSql()
}
func (gt Gt) MarshalJSON() ([]byte, error) {
return marshalExpression("gt", gt)
}
type Lt squirrel.Lt
func (lt Lt) ToSql() (sql string, args []interface{}, err error) {
return squirrel.Lt(mapFields(lt)).ToSql()
}
func (lt Lt) MarshalJSON() ([]byte, error) {
return marshalExpression("lt", lt)
}
type Before squirrel.Lt
func (bf Before) ToSql() (sql string, args []interface{}, err error) {
return squirrel.Lt(mapFields(bf)).ToSql()
}
func (bf Before) MarshalJSON() ([]byte, error) {
return marshalExpression("before", bf)
}
type After squirrel.Gt
func (af After) ToSql() (sql string, args []interface{}, err error) {
return squirrel.Gt(mapFields(af)).ToSql()
}
func (af After) MarshalJSON() ([]byte, error) {
return marshalExpression("after", af)
}
type Contains map[string]interface{}
func (ct Contains) ToSql() (sql string, args []interface{}, err error) {
lk := squirrel.Like{}
for f, v := range mapFields(ct) {
lk[f] = fmt.Sprintf("%%%s%%", v)
}
return lk.ToSql()
}
func (ct Contains) MarshalJSON() ([]byte, error) {
return marshalExpression("contains", ct)
}
type NotContains map[string]interface{}
func (nct NotContains) ToSql() (sql string, args []interface{}, err error) {
lk := squirrel.NotLike{}
for f, v := range mapFields(nct) {
lk[f] = fmt.Sprintf("%%%s%%", v)
}
return lk.ToSql()
}
func (nct NotContains) MarshalJSON() ([]byte, error) {
return marshalExpression("notContains", nct)
}
type StartsWith map[string]interface{}
func (sw StartsWith) ToSql() (sql string, args []interface{}, err error) {
lk := squirrel.Like{}
for f, v := range mapFields(sw) {
lk[f] = fmt.Sprintf("%s%%", v)
}
return lk.ToSql()
}
func (sw StartsWith) MarshalJSON() ([]byte, error) {
return marshalExpression("startsWith", sw)
}
type EndsWith map[string]interface{}
func (sw EndsWith) ToSql() (sql string, args []interface{}, err error) {
lk := squirrel.Like{}
for f, v := range mapFields(sw) {
lk[f] = fmt.Sprintf("%%%s", v)
}
return lk.ToSql()
}
func (sw EndsWith) MarshalJSON() ([]byte, error) {
return marshalExpression("endsWith", sw)
}
type InTheRange map[string]interface{}
func (itr InTheRange) ToSql() (sql string, args []interface{}, err error) {
var and squirrel.And
for f, v := range mapFields(itr) {
s := reflect.ValueOf(v)
if s.Kind() != reflect.Slice || s.Len() != 2 {
return "", nil, fmt.Errorf("invalid range for 'in' operator: %s", v)
}
and = append(and,
squirrel.GtOrEq{f: s.Index(0).Interface()},
squirrel.LtOrEq{f: s.Index(1).Interface()},
)
}
return and.ToSql()
}
func (itr InTheRange) MarshalJSON() ([]byte, error) {
return marshalExpression("inTheRange", itr)
}
type InTheLast map[string]interface{}
func (itl InTheLast) ToSql() (sql string, args []interface{}, err error) {
exp, err := inPeriod(itl, false)
if err != nil {
return "", nil, err
}
return exp.ToSql()
}
func (itl InTheLast) MarshalJSON() ([]byte, error) {
return marshalExpression("inTheLast", itl)
}
type NotInTheLast map[string]interface{}
func (nitl NotInTheLast) ToSql() (sql string, args []interface{}, err error) {
exp, err := inPeriod(nitl, true)
if err != nil {
return "", nil, err
}
return exp.ToSql()
}
func (nitl NotInTheLast) MarshalJSON() ([]byte, error) {
return marshalExpression("notInTheLast", nitl)
}
func inPeriod(m map[string]interface{}, negate bool) (Expression, error) {
var field string
var value interface{}
for f, v := range mapFields(m) {
field, value = f, v
break
}
str := fmt.Sprintf("%v", value)
v, err := strconv.ParseInt(str, 10, 64)
if err != nil {
return nil, err
}
firstDate := startOfPeriod(v, time.Now())
if negate {
return Or{
squirrel.Lt{field: firstDate},
squirrel.Eq{field: nil},
}, nil
}
return squirrel.Gt{field: firstDate}, nil
}
func startOfPeriod(numDays int64, from time.Time) string {
return from.Add(time.Duration(-24*numDays) * time.Hour).Format("2006-01-02")
}
type InPlaylist map[string]interface{}
func (ipl InPlaylist) ToSql() (sql string, args []interface{}, err error) {
return inList(ipl, false)
}
func (ipl InPlaylist) MarshalJSON() ([]byte, error) {
return marshalExpression("inPlaylist", ipl)
}
type NotInPlaylist map[string]interface{}
func (ipl NotInPlaylist) ToSql() (sql string, args []interface{}, err error) {
return inList(ipl, true)
}
func (ipl NotInPlaylist) MarshalJSON() ([]byte, error) {
return marshalExpression("notInPlaylist", ipl)
}
func inList(m map[string]interface{}, negate bool) (sql string, args []interface{}, err error) {
var playlistid string
var ok bool
if playlistid, ok = m["id"].(string); !ok {
return "", nil, errors.New("playlist id not given")
}
// Subquery to fetch all media files that are contained in given playlist
// Only evaluate playlist if it is public
subQuery := squirrel.Select("media_file_id").
From("playlist_tracks pl").
LeftJoin("playlist on pl.playlist_id = playlist.id").
Where(squirrel.And{
squirrel.Eq{"pl.playlist_id": playlistid},
squirrel.Eq{"playlist.public": 1}})
subQText, subQArgs, err := subQuery.PlaceholderFormat(squirrel.Question).ToSql()
if err != nil {
return "", nil, err
}
if negate {
return "media_file.id NOT IN (" + subQText + ")", subQArgs, nil
} else {
return "media_file.id IN (" + subQText + ")", subQArgs, nil
}
}
```
|
```go
/*
path_to_url
Unless required by applicable law or agreed to in writing, software
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
package mesh
import (
"github.com/weaveworks/mesh"
"k8s.io/klog/v2"
)
// glogLogger sends mesh log messages to glog
type glogLogger struct{}
var _ mesh.Logger = &glogLogger{}
func (g *glogLogger) Printf(format string, args ...interface{}) {
klog.Infof(format, args...)
}
```
|
```jsx
import PropTypes from 'prop-types';
import React from 'react';
import classNames from 'classnames';
import {FormattedMessage, injectIntl} from 'react-intl';
import UserAvatar from './user-avatar.jsx';
import styles from './author-info.css';
const AuthorInfo = ({
className,
imageUrl,
projectTitle,
// TODO: use userId to link to user's profile
userId, // eslint-disable-line no-unused-vars
username
}) => (
<div
className={classNames(
className,
styles.authorInfo
)}
>
<UserAvatar
className={styles.avatar}
imageUrl={imageUrl}
/>
<div className={styles.titleAuthor}>
<span className={styles.projectTitle}>
{projectTitle}
</span>
<div>
<span className={styles.usernameLine}>
<FormattedMessage
defaultMessage="by {username}"
description="Shows that a project was created by this user"
id="gui.authorInfo.byUser"
values={{
username: <span className={styles.username}>{username}</span>
}}
/>
</span>
</div>
</div>
</div>
);
AuthorInfo.propTypes = {
className: PropTypes.string,
imageUrl: PropTypes.string,
projectTitle: PropTypes.string,
userId: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
username: PropTypes.oneOfType([PropTypes.string, PropTypes.bool])
};
export default injectIntl(AuthorInfo);
```
|
Antiques Roadshow is a British television series produced by the BBC since 1979. Series 29 (2006/07) comprised 31 editions that were broadcast by the BBC from 3 September 2006 – 22 April 2007
The dates in brackets given below are the dates each episode was filmed at the location. The date not in brackets is the episode's first UK airing date on BBC One.
Series 29 (2006/07)
Series 29: 31 editions in 2006/07
References
External links
Homes And Antiques, Meet the Experts
Official Website – BBC Antiques Roadshow
BBC Proposed Episode Filming Locations
Episode list – TV.com
Episode list (from series 17) – bbcprograms.com
Filming Dates – BBC Homes and Antiques
BBC Restoration Roadshow
29
|
Kanglish (Kannada: ಕಂಗ್ಲಿಷ್) is a macaronic language of Kannada and English.
The name is a portmanteau of the names of the two languages and was first recorded earliest in 1993. Other less common terms are Kannalish (recorded from 2000), Kannadlish (2006) and Kanlish (2009).
At present in Karnataka, almost all urban people and some rural people talk in this language. This language is result of communication of English and Kannadigas.
Examples
En sir samachara? : whats the matter sir?
Hello, tiffin aytha? : Hello, have you had your tiffin?
Swalpa move madi : Just move a bit.
Swalpa brake haki : Please apply the brakes.
Yav movie hakiddare? : Which movie is playing?
Een documentary nodtaiddira? : What documentary are you watching?
Een kelsa madtaiddira computardu wordalli? : What work are you doing in Word?
References
Macaronic language
English language
Kannada language
|
```go
// Unless explicitly stated otherwise all files in this repository are licensed
// This product includes software developed at Datadog (path_to_url
//nolint:revive
package agent
import (
"encoding/json"
"fmt"
flaretypes "github.com/DataDog/datadog-agent/comp/core/flare/types"
"github.com/DataDog/datadog-agent/pkg/process/checks"
)
// FlareHelper is a helper struct to fill the flare with check output.
type FlareHelper struct {
Checks []checks.Check
}
// NewNewFlareHelper creates a new FlareHelper to be provided by the process agent component.
func NewFlareHelper(checks []checks.Check) *FlareHelper {
return &FlareHelper{Checks: checks}
}
// FillFlare is the callback function for the flare.
func (fh *FlareHelper) FillFlare(fb flaretypes.FlareBuilder) error {
for _, check := range fh.Checks {
if check.Realtime() {
continue
}
checkName := check.Name()
filename := fmt.Sprintf("%s_check_output.json", checkName)
fb.AddFileFromFunc(filename, func() ([]byte, error) { //nolint:errcheck
checkOutput, ok := checks.GetCheckOutput(checkName)
if !ok {
return []byte(checkName + " check is not running or has not been scheduled yet\n"), nil
}
checkJSON, err := json.MarshalIndent(checkOutput, "", " ")
if err != nil {
return []byte(fmt.Sprintf("error: %s", err.Error())), err
}
return checkJSON, nil
})
}
return nil
}
```
|
```php
<?php
declare(strict_types=1);
/**
* Passbolt ~ Open source password manager for teams
*
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @link path_to_url Passbolt(tm)
* @since 4.7.0
*/
namespace App\Service\Healthcheck\Application;
use App\Model\Validation\EmailValidationRule;
use App\Service\Healthcheck\HealthcheckCliInterface;
use App\Service\Healthcheck\HealthcheckServiceCollector;
use App\Service\Healthcheck\HealthcheckServiceInterface;
use Cake\Core\Configure;
class JsProdApplicationHealthcheck implements HealthcheckServiceInterface, HealthcheckCliInterface
{
/**
* Status of this health check if it is passed or failed.
*
* @var bool
*/
private bool $status = false;
/**
* @inheritDoc
*/
public function check(): HealthcheckServiceInterface
{
$this->status = (Configure::read('passbolt.js.build') === 'production');
return $this;
}
/**
* @inheritDoc
*/
public function domain(): string
{
return HealthcheckServiceCollector::DOMAIN_APPLICATION;
}
/**
* @inheritDoc
*/
public function isPassed(): bool
{
return $this->status;
}
/**
* @inheritDoc
*/
public function level(): string
{
return HealthcheckServiceCollector::LEVEL_WARNING;
}
/**
* @inheritDoc
*/
public function getSuccessMessage(): string
{
return __('Serving the compiled version of the javascript app.');
}
/**
* @inheritDoc
*/
public function getFailureMessage(): string
{
return __('Using non-compiled Javascript. Passbolt will be slower.');
}
/**
* @inheritDoc
*/
public function getHelpMessage()
{
return __('Set passbolt.js.build to production in {0}', CONFIG . 'passbolt.php');
}
/**
* CLI Option for this check.
*
* @return string
*/
public function cliOption(): string
{
return HealthcheckServiceCollector::DOMAIN_APPLICATION;
}
/**
* @inheritDoc
*/
public function getLegacyArrayKey(): string
{
return 'jsProd';
}
}
```
|
Pallekele () is a suburb of the city of Kandy in Kandy District, Central Province, Sri Lanka. The suburb is home to the Pallekele International Cricket Stadium, the Trinity College Rugby Stadium, the Sri Lanka International Buddhist Academy (SIBA) and the PALK Seismic Station.
Pallekele International Cricket Stadium
PICS, the third largest cricket stadium in Sri Lanka located in nearby Balagolla, is named after Pallekele. At the moment it is frequently hosting international matches. It hosted 3 matches of the 2011 ICC Cricket World Cup, 9 matches of the 2012 ICC World Twenty20 and a few Sri Lanka Premier League matches in 2012. Sri Lankan fast bowler Suranga Lakmal got Chris Gayle out for an LBW with the first ever international cricket delivery at the stadium.
References
External links
Sri Lanka International Buddhist Academy
Populated places in Sri Lanka
Suburbs of Kandy
|
```lua
require 'torch'
require 'nn'
require 'fast_neural_style.InstanceNormalization'
require 'fast_neural_style.ShaveImage'
require 'fast_neural_style.TotalVariation'
-- Prints the command-line arguments used to train a particular model
local cmd = torch.CmdLine()
cmd:option('-model', 'models/instance_norm/candy.t7')
function main()
local opt = cmd:parse(arg)
local checkpoint = torch.load(opt.model)
for k, v in pairs(checkpoint.opt) do
if type(v) == 'table' then
v = table.concat(v, ',')
end
print('-' .. k, v)
end
end
main()
```
|
```c++
//file LICENSE_1_0.txt or copy at path_to_url
#ifndef UUID_3EDF999CA1C011DEBA5C8DA956D89593
#define UUID_3EDF999CA1C011DEBA5C8DA956D89593
#include <boost/qvm/inline.hpp>
#include <boost/qvm/deduce_mat.hpp>
#include <boost/qvm/vec_traits.hpp>
#include <boost/qvm/assert.hpp>
#include <boost/qvm/enable_if.hpp>
namespace
boost
{
namespace
qvm
{
////////////////////////////////////////////////
namespace
qvm_detail
{
template <class OriginalVector>
class
col_mat_
{
col_mat_( col_mat_ const & );
col_mat_ & operator=( col_mat_ const & );
~col_mat_();
public:
template <class T>
BOOST_QVM_INLINE_TRIVIAL
col_mat_ &
operator=( T const & x )
{
assign(*this,x);
return *this;
}
template <class R>
BOOST_QVM_INLINE_TRIVIAL
operator R() const
{
R r;
assign(r,*this);
return r;
}
};
}
template <class OriginalVector>
struct
mat_traits< qvm_detail::col_mat_<OriginalVector> >
{
typedef qvm_detail::col_mat_<OriginalVector> this_matrix;
typedef typename vec_traits<OriginalVector>::scalar_type scalar_type;
static int const rows=vec_traits<OriginalVector>::dim;
static int const cols=1;
template <int Row,int Col>
static
BOOST_QVM_INLINE_CRITICAL
scalar_type
read_element( this_matrix const & x )
{
BOOST_QVM_STATIC_ASSERT(Col==0);
BOOST_QVM_STATIC_ASSERT(Row>=0);
BOOST_QVM_STATIC_ASSERT(Row<rows);
return vec_traits<OriginalVector>::template read_element<Row>(reinterpret_cast<OriginalVector const &>(x));
}
template <int Row,int Col>
static
BOOST_QVM_INLINE_CRITICAL
scalar_type &
write_element( this_matrix & x )
{
BOOST_QVM_STATIC_ASSERT(Col==0);
BOOST_QVM_STATIC_ASSERT(Row>=0);
BOOST_QVM_STATIC_ASSERT(Row<rows);
return vec_traits<OriginalVector>::template write_element<Row>(reinterpret_cast<OriginalVector &>(x));
}
static
BOOST_QVM_INLINE_CRITICAL
scalar_type
read_element_idx( int row, int col, this_matrix const & x )
{
BOOST_QVM_ASSERT(col==0);
BOOST_QVM_ASSERT(row>=0);
BOOST_QVM_ASSERT(row<rows);
return vec_traits<OriginalVector>::read_element_idx(row,reinterpret_cast<OriginalVector const &>(x));
}
static
BOOST_QVM_INLINE_CRITICAL
scalar_type &
write_element_idx( int row, int col, this_matrix & x )
{
BOOST_QVM_ASSERT(col==0);
BOOST_QVM_ASSERT(row>=0);
BOOST_QVM_ASSERT(row<rows);
return vec_traits<OriginalVector>::write_element_idx(row,reinterpret_cast<OriginalVector &>(x));
}
};
template <class OriginalVector,int R,int C>
struct
deduce_mat<qvm_detail::col_mat_<OriginalVector>,R,C>
{
typedef mat<typename vec_traits<OriginalVector>::scalar_type,R,C> type;
};
template <class OriginalVector,int R,int C>
struct
deduce_mat2<qvm_detail::col_mat_<OriginalVector>,qvm_detail::col_mat_<OriginalVector>,R,C>
{
typedef mat<typename vec_traits<OriginalVector>::scalar_type,R,C> type;
};
template <class A>
typename boost::enable_if_c<
is_vec<A>::value,
qvm_detail::col_mat_<A> const &>::type
BOOST_QVM_INLINE_TRIVIAL
col_mat( A const & a )
{
return reinterpret_cast<typename qvm_detail::col_mat_<A> const &>(a);
}
template <class A>
typename boost::enable_if_c<
is_vec<A>::value,
qvm_detail::col_mat_<A> &>::type
BOOST_QVM_INLINE_TRIVIAL
col_mat( A & a )
{
return reinterpret_cast<typename qvm_detail::col_mat_<A> &>(a);
}
////////////////////////////////////////////////
namespace
qvm_detail
{
template <class OriginalVector>
class
row_mat_
{
row_mat_( row_mat_ const & );
row_mat_ & operator=( row_mat_ const & );
~row_mat_();
public:
template <class T>
BOOST_QVM_INLINE_TRIVIAL
row_mat_ &
operator=( T const & x )
{
assign(*this,x);
return *this;
}
template <class R>
BOOST_QVM_INLINE_TRIVIAL
operator R() const
{
R r;
assign(r,*this);
return r;
}
};
}
template <class OriginalVector>
struct
mat_traits< qvm_detail::row_mat_<OriginalVector> >
{
typedef qvm_detail::row_mat_<OriginalVector> this_matrix;
typedef typename vec_traits<OriginalVector>::scalar_type scalar_type;
static int const rows=1;
static int const cols=vec_traits<OriginalVector>::dim;
template <int Row,int Col>
static
BOOST_QVM_INLINE_CRITICAL
scalar_type
read_element( this_matrix const & x )
{
BOOST_QVM_STATIC_ASSERT(Row==0);
BOOST_QVM_STATIC_ASSERT(Col>=0);
BOOST_QVM_STATIC_ASSERT(Col<cols);
return vec_traits<OriginalVector>::template read_element<Col>(reinterpret_cast<OriginalVector const &>(x));
}
template <int Row,int Col>
static
BOOST_QVM_INLINE_CRITICAL
scalar_type &
write_element( this_matrix & x )
{
BOOST_QVM_STATIC_ASSERT(Row==0);
BOOST_QVM_STATIC_ASSERT(Col>=0);
BOOST_QVM_STATIC_ASSERT(Col<cols);
return vec_traits<OriginalVector>::template write_element<Col>(reinterpret_cast<OriginalVector &>(x));
}
static
BOOST_QVM_INLINE_CRITICAL
scalar_type
read_element_idx( int row, int col, this_matrix const & x )
{
BOOST_QVM_ASSERT(row==0);
BOOST_QVM_ASSERT(col>=0);
BOOST_QVM_ASSERT(col<cols);
return vec_traits<OriginalVector>::read_element_idx(col,reinterpret_cast<OriginalVector const &>(x));
}
static
BOOST_QVM_INLINE_CRITICAL
scalar_type &
write_element_idx( int row, int col, this_matrix & x )
{
BOOST_QVM_ASSERT(row==0);
BOOST_QVM_ASSERT(col>=0);
BOOST_QVM_ASSERT(col<cols);
return vec_traits<OriginalVector>::write_element_idx(col,reinterpret_cast<OriginalVector &>(x));
}
};
template <class OriginalVector,int R,int C>
struct
deduce_mat<qvm_detail::row_mat_<OriginalVector>,R,C>
{
typedef mat<typename vec_traits<OriginalVector>::scalar_type,R,C> type;
};
template <class OriginalVector,int R,int C>
struct
deduce_mat2<qvm_detail::row_mat_<OriginalVector>,qvm_detail::row_mat_<OriginalVector>,R,C>
{
typedef mat<typename vec_traits<OriginalVector>::scalar_type,R,C> type;
};
template <class A>
typename boost::enable_if_c<
is_vec<A>::value,
qvm_detail::row_mat_<A> const &>::type
BOOST_QVM_INLINE_TRIVIAL
row_mat( A const & a )
{
return reinterpret_cast<typename qvm_detail::row_mat_<A> const &>(a);
}
template <class A>
typename boost::enable_if_c<
is_vec<A>::value,
qvm_detail::row_mat_<A> &>::type
BOOST_QVM_INLINE_TRIVIAL
row_mat( A & a )
{
return reinterpret_cast<typename qvm_detail::row_mat_<A> &>(a);
}
////////////////////////////////////////////////
namespace
qvm_detail
{
template <class OriginalVector>
class
translation_mat_
{
translation_mat_( translation_mat_ const & );
translation_mat_ & operator=( translation_mat_ const & );
~translation_mat_();
public:
template <class T>
BOOST_QVM_INLINE_TRIVIAL
translation_mat_ &
operator=( T const & x )
{
assign(*this,x);
return *this;
}
template <class R>
BOOST_QVM_INLINE_TRIVIAL
operator R() const
{
R r;
assign(r,*this);
return r;
}
};
template <class M,int Row,int Col,bool TransCol=(Col==mat_traits<M>::cols-1)>
struct read_translation_matat;
template <class OriginalVector,int Row,int Col,bool TransCol>
struct
read_translation_matat<translation_mat_<OriginalVector>,Row,Col,TransCol>
{
static
BOOST_QVM_INLINE_CRITICAL
typename mat_traits< translation_mat_<OriginalVector> >::scalar_type
f( translation_mat_<OriginalVector> const & )
{
return scalar_traits<typename mat_traits< translation_mat_<OriginalVector> >::scalar_type>::value(0);
}
};
template <class OriginalVector,int D>
struct
read_translation_matat<translation_mat_<OriginalVector>,D,D,false>
{
static
BOOST_QVM_INLINE_CRITICAL
typename mat_traits< translation_mat_<OriginalVector> >::scalar_type
f( translation_mat_<OriginalVector> const & )
{
return scalar_traits<typename mat_traits< translation_mat_<OriginalVector> >::scalar_type>::value(1);
}
};
template <class OriginalVector,int D>
struct
read_translation_matat<translation_mat_<OriginalVector>,D,D,true>
{
static
BOOST_QVM_INLINE_CRITICAL
typename mat_traits< translation_mat_<OriginalVector> >::scalar_type
f( translation_mat_<OriginalVector> const & )
{
return scalar_traits<typename mat_traits< translation_mat_<OriginalVector> >::scalar_type>::value(1);
}
};
template <class OriginalVector,int Row,int Col>
struct
read_translation_matat<translation_mat_<OriginalVector>,Row,Col,true>
{
static
BOOST_QVM_INLINE_CRITICAL
typename mat_traits< translation_mat_<OriginalVector> >::scalar_type
f( translation_mat_<OriginalVector> const & x )
{
return vec_traits<OriginalVector>::template read_element<Row>(reinterpret_cast<OriginalVector const &>(x));
}
};
}
template <class OriginalVector>
struct
mat_traits< qvm_detail::translation_mat_<OriginalVector> >
{
typedef qvm_detail::translation_mat_<OriginalVector> this_matrix;
typedef typename vec_traits<OriginalVector>::scalar_type scalar_type;
static int const rows=vec_traits<OriginalVector>::dim+1;
static int const cols=vec_traits<OriginalVector>::dim+1;
template <int Row,int Col>
static
BOOST_QVM_INLINE_CRITICAL
scalar_type
read_element( this_matrix const & x )
{
BOOST_QVM_STATIC_ASSERT(Row>=0);
BOOST_QVM_STATIC_ASSERT(Row<rows);
BOOST_QVM_STATIC_ASSERT(Col>=0);
BOOST_QVM_STATIC_ASSERT(Col<cols);
return qvm_detail::read_translation_matat<qvm_detail::translation_mat_<OriginalVector>,Row,Col>::f(x);
}
template <int Row,int Col>
static
BOOST_QVM_INLINE_CRITICAL
scalar_type &
write_element( this_matrix & x )
{
BOOST_QVM_STATIC_ASSERT(Row>=0);
BOOST_QVM_STATIC_ASSERT(Row<rows);
BOOST_QVM_STATIC_ASSERT(Col==cols-1);
BOOST_QVM_STATIC_ASSERT(Col!=Row);
return vec_traits<OriginalVector>::template write_element<Row>(reinterpret_cast<OriginalVector &>(x));
}
static
BOOST_QVM_INLINE_CRITICAL
scalar_type
read_element_idx( int row, int col, this_matrix const & x )
{
BOOST_QVM_ASSERT(row>=0);
BOOST_QVM_ASSERT(row<rows);
BOOST_QVM_ASSERT(col>=0);
BOOST_QVM_ASSERT(col<cols);
return
row==col?
scalar_traits<scalar_type>::value(1):
(col==cols-1?
vec_traits<OriginalVector>::read_element_idx(row,reinterpret_cast<OriginalVector const &>(x)):
scalar_traits<scalar_type>::value(0));
}
static
BOOST_QVM_INLINE_CRITICAL
scalar_type &
write_element_idx( int row, int col, this_matrix const & x )
{
BOOST_QVM_ASSERT(row>=0);
BOOST_QVM_ASSERT(row<rows);
BOOST_QVM_ASSERT(col==cols-1);
BOOST_QVM_ASSERT(col!=row);
return vec_traits<OriginalVector>::write_element_idx(row,reinterpret_cast<OriginalVector &>(x));
}
};
template <class OriginalVector,int R,int C>
struct
deduce_mat<qvm_detail::translation_mat_<OriginalVector>,R,C>
{
typedef mat<typename vec_traits<OriginalVector>::scalar_type,R,C> type;
};
template <class OriginalVector,int R,int C>
struct
deduce_mat2<qvm_detail::translation_mat_<OriginalVector>,qvm_detail::translation_mat_<OriginalVector>,R,C>
{
typedef mat<typename vec_traits<OriginalVector>::scalar_type,R,C> type;
};
template <class A>
typename boost::enable_if_c<
is_vec<A>::value,
qvm_detail::translation_mat_<A> const &>::type
BOOST_QVM_INLINE_TRIVIAL
translation_mat( A const & a )
{
return reinterpret_cast<typename qvm_detail::translation_mat_<A> const &>(a);
}
template <class A>
typename boost::enable_if_c<
is_vec<A>::value,
qvm_detail::translation_mat_<A> &>::type
BOOST_QVM_INLINE_TRIVIAL
translation_mat( A & a )
{
return reinterpret_cast<typename qvm_detail::translation_mat_<A> &>(a);
}
////////////////////////////////////////////////
namespace
qvm_detail
{
template <class OriginalVector>
class
diag_mat_
{
diag_mat_( diag_mat_ const & );
diag_mat_ & operator=( diag_mat_ const & );
~diag_mat_();
public:
template <class T>
BOOST_QVM_INLINE_TRIVIAL
diag_mat_ &
operator=( T const & x )
{
assign(*this,x);
return *this;
}
template <class R>
BOOST_QVM_INLINE_TRIVIAL
operator R() const
{
R r;
assign(r,*this);
return r;
}
};
}
template <class OriginalVector>
struct
mat_traits< qvm_detail::diag_mat_<OriginalVector> >
{
typedef qvm_detail::diag_mat_<OriginalVector> this_matrix;
typedef typename vec_traits<OriginalVector>::scalar_type scalar_type;
static int const rows=vec_traits<OriginalVector>::dim;
static int const cols=vec_traits<OriginalVector>::dim;
template <int Row,int Col>
static
BOOST_QVM_INLINE_CRITICAL
scalar_type
read_element( this_matrix const & x )
{
BOOST_QVM_STATIC_ASSERT(Row>=0);
BOOST_QVM_STATIC_ASSERT(Row<rows);
BOOST_QVM_STATIC_ASSERT(Col>=0);
BOOST_QVM_STATIC_ASSERT(Col<cols);
return Row==Col?vec_traits<OriginalVector>::template read_element<Row>(reinterpret_cast<OriginalVector const &>(x)):scalar_traits<scalar_type>::value(0);
}
template <int Row,int Col>
static
BOOST_QVM_INLINE_CRITICAL
scalar_type &
write_element( this_matrix & x )
{
BOOST_QVM_STATIC_ASSERT(Row>=0);
BOOST_QVM_STATIC_ASSERT(Row<rows);
BOOST_QVM_STATIC_ASSERT(Row==Col);
return vec_traits<OriginalVector>::template write_element<Row>(reinterpret_cast<OriginalVector &>(x));
}
static
BOOST_QVM_INLINE_CRITICAL
scalar_type
read_element_idx( int row, int col, this_matrix const & x )
{
BOOST_QVM_ASSERT(row>=0);
BOOST_QVM_ASSERT(row<rows);
BOOST_QVM_ASSERT(col>=0);
BOOST_QVM_ASSERT(col<cols);
return row==col?vec_traits<OriginalVector>::read_element_idx(row,reinterpret_cast<OriginalVector const &>(x)):scalar_traits<scalar_type>::value(0);
}
static
BOOST_QVM_INLINE_CRITICAL
scalar_type &
write_element_idx( int row, int col, this_matrix & x )
{
BOOST_QVM_ASSERT(row>=0);
BOOST_QVM_ASSERT(row<rows);
BOOST_QVM_ASSERT(row==col);
return vec_traits<OriginalVector>::write_element_idx(row,reinterpret_cast<OriginalVector &>(x));
}
};
template <class OriginalVector,int R,int C>
struct
deduce_mat<qvm_detail::diag_mat_<OriginalVector>,R,C>
{
typedef mat<typename vec_traits<OriginalVector>::scalar_type,R,C> type;
};
template <class OriginalVector,int R,int C>
struct
deduce_mat2<qvm_detail::diag_mat_<OriginalVector>,qvm_detail::diag_mat_<OriginalVector>,R,C>
{
typedef mat<typename vec_traits<OriginalVector>::scalar_type,R,C> type;
};
template <class A>
typename boost::enable_if_c<
is_vec<A>::value,
qvm_detail::diag_mat_<A> const &>::type
BOOST_QVM_INLINE_TRIVIAL
diag_mat( A const & a )
{
return reinterpret_cast<typename qvm_detail::diag_mat_<A> const &>(a);
}
template <class A>
typename boost::enable_if_c<
is_vec<A>::value,
qvm_detail::diag_mat_<A> &>::type
BOOST_QVM_INLINE_TRIVIAL
diag_mat( A & a )
{
return reinterpret_cast<typename qvm_detail::diag_mat_<A> &>(a);
}
////////////////////////////////////////////////
}
}
#endif
```
|
Adriano Tancon (born 18 November 1958) is an Italian ice hockey player. He competed in the men's tournament at the 1984 Winter Olympics.
References
External links
1958 births
Living people
Olympic ice hockey players for Italy
Ice hockey players at the 1984 Winter Olympics
People from Canale d'Agordo
Sportspeople from the Province of Belluno
|
```python
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
#
# path_to_url
#
# Unless required by applicable law or agreed to in writing,
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# specific language governing permissions and limitations
"""tvm.contrib.msc.core.tools.distill.distiller"""
import os
from typing import List, Any, Dict, Tuple
import tvm
from tvm.contrib.msc.core.ir import MSCGraph
from tvm.contrib.msc.core.tools.tool import ToolType, BaseTool, ToolStrategy
from tvm.contrib.msc.core import utils as msc_utils
class BaseDistiller(BaseTool):
"""Base distiller for all"""
def setup(self) -> dict:
"""Setup the tool
Returns
-------
info: dict
The setup info.
"""
self._max_iter = self._options.get("max_iter", 1)
self._save_step = self._options.get("save_step", 50)
if "weights_folder" in self._options:
self._weights_folder = msc_utils.msc_dir(self._options["weights_folder"])
else:
self._weights_folder = msc_utils.get_weights_dir().create_dir("Distill")
self._weights_path = self._weights_folder.relpath("distill_{}.bin".format(self._max_iter))
self._distilled = os.path.isfile(self._weights_path)
return super().setup()
def _reset(
self, graphs: List[MSCGraph], weights: Dict[str, tvm.nd.array]
) -> Tuple[List[MSCGraph], Dict[str, tvm.nd.array]]:
"""Reset the tool
Parameters
----------
graphs: list<MSCgraph>
The msc graphs.
weights: dict<str, tvm.nd.array>
The weights.
Returns
-------
graphs: list<MSCgraph>
The msc graphs.
weights: dict<str, tvm.nd.array>
The weights.
"""
self._current_iter, self._total_loss = 0, 0
if self._distilled:
with open(self._weights_path, "rb") as f:
distilled_weights = tvm.runtime.load_param_dict(f.read())
weights.update({k: v for k, v in distilled_weights.items() if k in weights})
msg = "Update {} distilled weights".format(len(distilled_weights))
self._logger.info(self.tool_mark(msg))
return super()._reset(graphs, weights)
def build_model(self, teacher: Any, student: Any) -> Any:
"""Build the model with teacher and student
Parameters
----------
teacher: Any
The teacher model
student: Any
The student model
Returns
-------
model: Any
The built model.
"""
raise NotImplementedError("build_model is not implemented in BaseDistiller")
def learn(self, loss: Any):
"""Learn after forward
Parameters
----------
loss: Any
The loss after forward
"""
if self.on_debug(3, in_forward=False):
msg = "Start learn[{}]".format(self._current_iter)
self._logger.debug(self.tool_mark(msg))
self._total_loss += float(self._learn(loss))
def _learn(self, loss: Any):
"""Learn after forward
Parameters
----------
loss: Any
The loss after forward
"""
raise NotImplementedError("_learn is not implemented in BaseDistiller")
def distill(self) -> Dict[str, Any]:
"""Distill the knowledge
Returns
-------
weights: dict<str, Any>
The distilled weights.
"""
weights = self._distill()
if self._current_iter >= self._max_iter or (
self._current_iter > 0 and self._current_iter % self._save_step == 0
):
self._save_weights(weights)
if self._current_iter >= self._max_iter:
self._distilled = True
self._plan = {n: msc_utils.inspect_array(d, False) for n, d in weights.items()}
msg = "Distill[{}] loss({} batch) {}".format(
self._current_iter, self._forward_cnt, self._total_loss
)
self._logger.info(self.tool_mark(msg))
self._current_iter += 1
self._total_loss, self._forward_cnt = 0, 0
return weights
def _distill(self) -> Dict[str, Any]:
"""Distill the knowledge
Returns
-------
weights: dict<str, Any>
The distilled weights.
"""
raise NotImplementedError("_distill is not implemented in BaseDistiller")
def _save_weights(self, weights: Dict[str, Any]):
"""Save the distilled weights
Parameters
----------
weights: dict<str, Any>
The distilled weights.
"""
weights = {n: tvm.nd.array(msc_utils.cast_array(d)) for n, d in weights.items()}
weights_path = self._weights_folder.relpath("distill_{}.bin".format(self._current_iter))
with open(weights_path, "wb") as f_params:
f_params.write(tvm.runtime.save_param_dict(weights))
if self._debug_level >= 2:
msg = "Save weights[{}] to {}".format(self._current_iter, weights_path)
self._logger.debug(self.tool_mark(msg))
def _support_scope(self, scope: str) -> bool:
"""Check if the scope si supported
Parameters
-------
scope: str
The scope mark, should be null or ToolScope
Returns
-------
vaild: bool
Whether to process the tensor.
"""
return True
def _process_tensor(
self, tensor: Any, name: str, consumer: str, scope: str, strategys: List[ToolStrategy]
) -> Any:
"""Process tensor
Parameters
-------
tensor: Any
Tensor in framework
name: str
The name of the tensor.
consumer: str
The name of the consumer.
scope: str
The scope mark teacher| student| null.
strategys: list<ToolStrategy>
The strategys for the tensor.
Returns
-------
tensor: Any
The processed tensor.
"""
if self._distilled:
return tensor
return self._distill_tensor(tensor, name, consumer, scope, strategys)
def _distill_tensor(
self, tensor: Any, name: str, consumer: str, scope: str, strategys: List[ToolStrategy]
) -> Any:
"""Process tensor
Parameters
-------
tensor: Any
Tensor in framework
name: str
The name of the tensor.
consumer: str
The name of the consumer.
scope: str
The scope mark teacher| student| null.
strategys: list<ToolStrategy>
The strategys for the tensor.
Returns
-------
tensor: Any
The processed tensor.
"""
if name not in self._plan:
self._plan[name] = {}
plan = {}
for strategy in strategys:
plan.update(strategy(self, tensor, name, consumer, scope))
self._plan[name][scope] = plan
return tensor
@property
def distilled(self):
return self._distilled
@classmethod
def tool_type(cls):
return ToolType.DISTILLER
@classmethod
def exportable(cls):
return False
@msc_utils.register_tool
class DefaultDistiller(BaseDistiller):
@classmethod
def tool_style(cls):
return "default"
```
|
Sandy River may refer to:
Rivers in the United States
Sandy River (Chandler Bay), Jonesport, Maine
Sandy River (Kennebec River) in Maine
Sandy River (Mississippi River), a tributary of the Mississippi River in Minnesota
Sandy River (Red Lake), a tributary of Lower Red Lake in Minnesota
Sandy River (Oregon)
Sandy River (South Carolina)
Sandy River (Bush River tributary), Virginia
Sandy River (Dan River tributary), Virginia
Upper Sandy River, in the Alaska Peninsula National Wildlife Refuge
Settlements in the United States
Sandy River Plantation, Maine, a municipality in Maine
Sandy River, Virginia, Pittsylvania County
See also
Big Sandy River (disambiguation)
Little Sandy River (disambiguation)
Sandy River Airport, Sandy, Oregon
Sandy Rivers
Sandy Creek (disambiguation)
|
Mikhail Pavlovich Butusov (; 18 June 1900 in Saint Petersburg – 11 April 1963 in Leningrad) was a Soviet football player and coach and a bandy player. He was the brother of Vasily Butusov.
Honours
RSFSR Champion: 1924, 1932.
Leningrad Champion: 1928, 1929, 1931, 1933, 1935.
Soviet Bandy League bronze: 1936 (with Dynamo Leningrad).
International career
Butusov made his debut for USSR on 16 November 1924 in a friendly against Turkey. He was the captain of the team and scored 2 goals in a 3:0 victory. This was the first official game of the Soviet Union in international football, and therefore Butusov scored the first ever goal for the USSR.
References
External links
Profile
Soviet men's footballers
Soviet Union men's international footballers
Soviet football managers
FC Dynamo Saint Petersburg players
FC Dynamo Saint Petersburg managers
FC Dinamo Tbilisi managers
FC Zenit Saint Petersburg managers
FC Dynamo Kyiv managers
Soviet bandy players
1900 births
1963 deaths
Men's association football forwards
|
Nestor Bayona (born 10 December 1985) is a Spanish conductor. He is a frequent guest conductor at the Polish National Radio Symphony Orchestra, the Transylvania State Philharmonic Orchestra and the Opéra de Marseille.
Life and career
Born in Lleida, Nestor Bayona began his career as a pianist, training at the Conservatory de Lleida at the age of 6. He then moved to the Royal Northern College of Music in Manchester, where he studied Piano with Helen Krizos, before continuing onto the Geneva University of Music to study piano with Nelson Goerner and then conducting with Laurent Gay. He went on to pursue a postgraduate diploma in conducting at the Berlin University of the Arts with Steven Sloane.
Néstor Bayona was appointed Resident Conductor at the Polish National Radio Symphony Orchestra in the 2022-23 season
During the 2021–22 season Néstor Bayona made his debut at the Palau de la Música Catalana with the Orquestra del Reial Cercle Artístic de Barcelona, as well as a debut at the Liceu as part of the OH!PÈRA initiative. In 2019, he also made his official conducting debut at the Berliner Philharmonie with the Deutsch-Skandinavische Jugend-Philharmonie and at the Festival de La Roque-d'Anthéron 2019 with the soloist David Kadouch and the Orchestre Philharmonique de Marseille, which was broadcast live on France Musique.
Nestor Bayona previously served as assistant conductor to Lawrence Foster at the Opéra de Marseille and at the Polish National Radio Symphony Orchestra. He was also assistant to Henrik Nánási at the Liceu and to Steven Sloane at the Komische Oper Berlin.
As a conductor, Nestor Bayona also has experience in composing. During the pandemic, he re-orchestrated Verdi's Luisa Miller for a reduced ensemble of 20 musicians. He has also worked closely with Marin Alsop during her Japan tour with the Polish National Radio Symphony Orchestra in September 2022 as well as her conducting masterclasses in Katowice.
Awards
In December 2022, Nestor Bayona was awarded Associate Member of the Royal Northern College of Music, presided by Sir John Tomlinson (bass) for his achievements as a musician
In 2015, Nestor Bayona was awarded the Ciutat de Lleida International Award for his cultural contribution to his hometown
References
External links
*
1985 births
Living people
Berlin University of the Arts alumni
|
Hofsteniola is a genus of worms belonging to the family Hofsteniidae.
Species:
Hofsteniola pardii Papi, 1957
References
Acoelomorphs
|
The 1980–81 Israel State Cup (, Gvia HaMedina) was the 42nd season of Israel's nationwide football cup competition and the 27th after the Israeli Declaration of Independence.
The competition was won by Bnei Yehuda who have beaten Hapoel Tel Aviv 4–3 in penalty shoot-out, after 2–2 in the final.
Format Changes
Starting with this edition, if a match is drawn, a replay is to be played, drawn replays are to be settled with extra time and penalty shootouts. This does not include the final and the semi-final, which are still to be settled without replays.
Results
Fifth Round
Sixth Round
Seventh Round
Round of 16
Quarter-finals
Semi-finals
Final
References
100 Years of Football 1906-2006, Elisha Shohat (Israel), 2006, p. 250
5 upsets in the Football State Cup Davar, 25.1.1981, Historical Jewish Press
Kiryat Gat - Lod 4:2; Sderot - Beitar Tel Aviv 0:0 Davar, 22.2.1981, Historical Jewish Press
Upset in the State Cup: Maccabi Be'er Sheva (Liga Bet) eliminated Kiryat Shmona Davar, 4.3.1981, Historical Jewish Press
Bnei Hatzor from Liga Bet upset Givat Olga Davar, 5.3.1981, Historical Jewish Press
Cup (Pages 2-5) Hadshot HaSport, 15.3.1981, archive.football.co.il
Cup (Page 7) Hadshot HaSport, 18.3.1981, archive.football.co.il
Israel State Cup
State Cup
Israel State Cup seasons
|
```shell
Revision control of configuration files with git
Change your `hostname` on systems using `systemd`
Preventing a user from logging into the system
Check the HDD with `badblocks`
Executing scripts on system boot using `systemd`
```
|
The 2022–23 season is Górnik Zabrze's 75th season in existence and the club's sixth consecutive season in the top flight of Polish football. In addition to the domestic league, Górnik Zabrze will participate in this season's edition of the Polish Cup. The season covers the period from 1 July 2022 to 30 June 2023.
Players
First-team squad
Out on loan
Pre-season and friendlies
Competitions
Overview
Ekstraklasa
League table
Results summary
Results by round
Matches
The league fixtures were announced on 1 June 2022.
Polish Cup
Statistics
Goalscorers
References
Górnik Zabrze
Górnik Zabrze
|
```protocol buffer
var morco = {
[[var]]
};
[[[var]]]
/**
* %var_des
* @type {%var_type_des}
*/
%var:%var_value,
```
|
```objective-c
//
// YFViperInteractorPrivate.m
// BigShow1949
//
// Created by big show on 2018/10/17.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@protocol YFViperInteractorPrivate<YFViperInteractor>
- (void)setEventHandler:(id)eventHandler;
- (void)setDataSource:(id)dataSource;
@end
```
|
Steel tariff may refer to:
The 2002 United States steel tariff introduced in 2002 by President George W. Bush
The steel and aluminium tariff proposed on 1 March 2018 by President Donald Trump
|
```scss
/** === Main menu === */
.main-navigation {
display: block;
margin-top: #{0.25 * $size__spacing-unit};
body.page & {
display: block;
}
> div {
display: inline;
}
/* Un-style buttons */
button {
display: inline-block;
border: none;
padding: 0;
margin: 0;
font-family: $font__heading;
font-weight: 700;
line-height: $font__line-height-heading;
text-decoration: none;
background: transparent;
color: inherit;
cursor: pointer;
transition:
background 250ms ease-in-out,
transform 150ms ease;
-webkit-appearance: none;
-moz-appearance: none;
&:hover,
&:focus {
background: transparent;
}
&:focus {
outline: 1px solid transparent;
outline-offset: -4px;
}
&:active {
transform: scale(0.99);
}
}
.main-menu {
display: inline-block;
margin: 0;
padding: 0;
> li {
color: $color__link;
display: inline-block;
position: relative;
> a {
font-weight: 700;
color: $color__link;
margin-right: #{0.5 * $size__spacing-unit};
+ svg {
margin-right: #{0.5 * $size__spacing-unit};
}
&:hover,
&:hover + svg {
color: $color__link-hover;
}
}
&.menu-item-has-children {
display: inline-block;
position: inherit;
@include media(tablet) {
position: relative;
}
> a {
margin-right: #{0.125 * $size__spacing-unit};
}
& > a,
.menu-item-has-children > a {
&:after {
content: "";
display: none;
}
}
.submenu-expand {
display: inline-block;
margin-right: #{0.25 * $size__spacing-unit};
/* Priority+ Menu */
&.main-menu-more-toggle {
position: relative;
height: 24px;
line-height: $font__line-height-heading;
width: 24px;
padding: 0;
margin-left: #{0.5 * $size__spacing-unit};
svg {
height: 24px;
width: 24px;
top: #{-0.125 * $size__spacing-unit};
vertical-align: text-bottom;
}
}
.wp-customizer-unloading &,
&.is-empty {
display: none;
}
svg {
position: relative;
top: 0.2rem;
}
}
}
&:last-child > a,
&:last-child.menu-item-has-children .submenu-expand {
margin-right: 0;
}
}
}
.sub-menu {
background-color: $color__link;
color: $color__background-body;
list-style: none;
padding-left: 0;
position: absolute;
opacity: 0;
left: -9999px;
z-index: 99999;
@include media(tablet) {
width: auto;
min-width: -moz-max-content;
min-width: -webkit-max-content;
min-width: max-content;
}
> li {
display: block;
float: none;
position: relative;
&.menu-item-has-children {
.submenu-expand {
display: inline-block;
position: absolute;
width: calc( 24px + #{$size__spacing-unit} );
right: 0;
top: calc( .125 * #{$size__spacing-unit} );
bottom: 0;
color: white;
line-height: 1;
padding: calc( .5 * #{$size__spacing-unit} );
svg {
top: 0;
}
}
.submenu-expand {
margin-right: 0;
}
@include media(tablet) {
.menu-item-has-children > a {
&:after {
content: "\203a";
}
}
}
}
> a,
> .menu-item-link-return {
color: $color__background-body;
display: block;
line-height: $font__line-height-heading;
text-shadow: none;
padding: calc( .5 * #{$size__spacing-unit} ) calc( 24px + #{$size__spacing-unit} ) calc( .5 * #{$size__spacing-unit} ) $size__spacing-unit;
max-width: #{20 * $size__spacing-unit};
&:hover,
&:focus {
background: $color__link-hover;
&:after {
background: $color__link-hover;
}
}
}
> .menu-item-link-return {
width: 100%;
font-size: $font__size_base;
font-weight: normal;
text-align: left;
}
> a:empty {
display: none;
}
&.mobile-parent-nav-menu-item {
display: none;
font-size: $font__size-sm;
font-weight: normal;
svg {
position: relative;
top: 0.2rem;
margin-right: calc( .25 * #{$size__spacing-unit} );
}
}
}
}
/*
* Sub-menu styles
*
* :focus-within needs its own selector so other similar
* selectors dont get ignored if a browser doesnt recognize it
*/
.main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu {
display: block;
left: 0;
margin-top: 0;
opacity: 1;
width: auto;
min-width: 100%;
/* Non-mobile position */
@include media(tablet) {
display: block;
margin-top: 0;
opacity: 1;
position: absolute;
left: 0;
right: auto;
top: auto;
bottom: auto;
height: auto;
min-width: -moz-max-content;
min-width: -webkit-max-content;
min-width: max-content;
transform: none;
}
&.hidden-links {
left: 0;
width: 100%;
display: table;
position: absolute;
@include media(tablet) {
right: 0;
left: auto;
display: block;
width: max-content;
}
}
.submenu-expand {
display: none;
}
.sub-menu {
display: block;
margin-top: inherit;
position: relative;
width: 100%;
left: 0;
opacity: 1;
/* Non-mobile position */
@include media(tablet) {
float: none;
max-width: 100%;
}
}
/* Nested sub-menu dashes */
.sub-menu {
counter-reset: submenu;
}
.sub-menu > li > a::before {
font-family: $font__body;
font-weight: normal;
content: "\2013\00a0" counters(submenu, "\2013\00a0", none);
counter-increment: submenu
}
}
.main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu,
.main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu,
.main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu {
display: block;
left: 0;
margin-top: 0;
opacity: 1;
width: auto;
min-width: 100%;
/* Non-mobile position */
@include media(tablet) {
display: block;
float: none;
margin-top: 0;
opacity: 1;
position: absolute;
left: 0;
right: auto;
top: auto;
bottom: auto;
height: auto;
min-width: -moz-max-content;
min-width: -webkit-max-content;
min-width: max-content;
transform: none;
}
&.hidden-links {
left: 0;
width: 100%;
display: table;
position: absolute;
@include media(tablet) {
right: 0;
left: auto;
display: table;
width: max-content;
}
}
.submenu-expand {
display: none;
}
.sub-menu {
display: block;
margin-top: inherit;
position: relative;
width: 100%;
left: 0;
opacity: 1;
/* Non-mobile position */
@include media(tablet) {
float: none;
max-width: 100%;
}
}
/* Nested sub-menu dashes */
.sub-menu {
counter-reset: submenu;
}
.sub-menu > li > a::before {
font-family: $font__body;
font-weight: normal;
content: "\2013\00a0" counters(submenu, "\2013\00a0", none);
counter-increment: submenu
}
}
/**
* Fade-in animation for top-level submenus
*/
.main-menu > .menu-item-has-children:not(.off-canvas):hover > .sub-menu {
animation: fade_in 0.1s forwards;
}
/**
* Off-canvas touch device styles
*/
.main-menu .menu-item-has-children.off-canvas .sub-menu {
.submenu-expand .svg-icon {
transform: rotate(270deg);
}
.sub-menu {
opacity: 0;
position: absolute;
z-index: 0;
transform: translateX(-100%);
}
li:hover,
li:focus,
li > a:hover,
li > a:focus {
background-color: transparent;
}
> li > a,
> li > .menu-item-link-return {
white-space: inherit;
}
&.expanded-true {
display: table;
margin-top: 0;
opacity: 1;
padding-left: 0;
/* Mobile position */
left: 0;
top: 0;
right: 0;
bottom: 0;
position: fixed;
z-index: 100000; /* Make sure appears above mobile admin bar */
width: 100vw;
height: 100vh;
max-width: 100vw;
transform: translateX(+100%);
animation: slide_in_right 0.3s forwards;
> .mobile-parent-nav-menu-item {
display: block;
}
/* Prevent menu from being blocked by admin bar */
.admin-bar & {
top: 46px;
height: calc( 100vh - 46px );
.sub-menu.expanded-true {
top: 0;
}
/* WP core breakpoint */
@media only screen and ( min-width: 782px ) {
top: 32px;
height: calc( 100vh - 32px );
.sub-menu.expanded-true {
top: 0;
}
}
}
}
}
// Hide duplicate menu-more-link when re-loading a menu in the customizer
.main-menu-more {
&:nth-child(n+3) {
display: none;
}
}
}
/* Menu animation */
@keyframes slide_in_right {
100% {
transform: translateX(0%);
}
}
@keyframes fade_in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
```
|
Ching Wah Street is a street in North Point in Hong Kong. The short, primarily residential, street runs from west to east, parallel to King's Road, at a higher elevation, just behind St. Jude's Church. It is the location of Kiangsu and Chekiang Primary School and Eng Yu Evangelistic Mission Hong Kong Church.
History
During the 1967 riots, a bomb exploded in Ching Wah Street, killing two young children. It was one of 15 bombs that exploded during the disturbances, which lasted from April to December that year.
See also
List of streets and roads in Hong Kong
References
Roads on Hong Kong Island
|
```c++
//
// system_error.hpp
// ~~~~~~~~~~~~~~~~
//
//
// file LICENSE_1_0.txt or copy at path_to_url
//
#ifndef ASIO_SYSTEM_ERROR_HPP
#define ASIO_SYSTEM_ERROR_HPP
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
#include "asio/detail/config.hpp"
#include <system_error>
#include "asio/detail/push_options.hpp"
namespace asio {
typedef std::system_error system_error;
} // namespace asio
#include "asio/detail/pop_options.hpp"
#endif // ASIO_SYSTEM_ERROR_HPP
```
|
The 2022 Tennessee Volunteers football team represented the University of Tennessee in the 2022 NCAA Division I FBS football season. The Volunteers played their home games at Neyland Stadium in Knoxville, Tennessee, and competed in the Eastern Division of the Southeastern Conference (SEC). They were led by second-year head coach Josh Heupel.
On October 15, 2022, Tennessee beat the No. 3-ranked Alabama Crimson Tide, winning the rivalry game for the first time since 2006. Fans rushed the field at Neyland Stadium and tore down the goalposts, carrying them around campus and eventually throwing them into the Tennessee River. The university was fined $100,000 by the Southeastern Conference as a result of rushing the field. The university received $152,000 in donations from the fans to replace the goalposts. The Volunteers capped off an impressive 11 win season against the Clemson Tigers, winning the 2022 Orange Bowl 31-14, the Vols’ first 11 win season since 2001.
Schedule
Tennessee and the SEC announced the 2022 football schedule on September 21, 2021.
Game summaries
vs Ball State
At No. 17 Pittsburgh
vs Akron
vs No. 20 Florida
At No. 25 LSU Tigers
vs No. 3 Alabama
Sources:
vs No. 18 (FCS) UT Martin
vs No. 19 Kentucky
Sources:
At No. 3 Georgia
vs Missouri
At South Carolina
At Vanderbilt
No. 7 Clemson
Roster
Rankings
Players drafted into the NFL
References
Tennessee
Tennessee Volunteers football seasons
Orange Bowl champion seasons
Tennessee Volunteers football
|
Leonard Russell Price (born September 21, 1942) is an American politician in the state of Minnesota. He served in the Minnesota State Senate.
References
Democratic Party Minnesota state senators
Democratic Party members of the Minnesota House of Representatives
1942 births
Living people
People from Woodbury, Minnesota
University of Minnesota alumni
University of Wisconsin–River Falls alumni
|
```java
package com.sohu.cache.server.data;
import org.apache.commons.lang.math.NumberUtils;
/**
*
*/
public class Memory implements LineParser{
public static final String FLAG = "MEM";
//M
private float total;
//M
private float totalFree;
//bufferM
private float buffer;
//cacheM
private float cache;
//swapM
private float swap;
//swapM
private float swapFree;
/**
* line format:
* MEM,Memory MB bx-50-13,memtotal,hightotal,lowtotal,swaptotal,memfree,highfree,lowfree,swapfree,memshared,cached,active,bigfree,buffers,swapcached,inactive
* MEM,T0001,48288.7,0.0,48288.7,8189.4,132.6,0.0,132.6,8189.1,-0.0,24210.6,30819.7,-1.0,153.9,0.0,16451.1
*/
public void parse(String line, String timeKey) throws Exception{
if(line.startsWith(FLAG)) {
String[] items = line.split(",");
if(!items[1].equals(timeKey)) {
return;
}
total = NumberUtils.toFloat(items[2]);
swap = NumberUtils.toFloat(items[5]);
totalFree = NumberUtils.toFloat(items[6]);
swapFree = NumberUtils.toFloat(items[9]);
cache = NumberUtils.toFloat(items[11]);
buffer = NumberUtils.toFloat(items[14]);
}
}
public float getTotal() {
return total;
}
public float getTotalFree() {
return totalFree;
}
public float getBuffer() {
return buffer;
}
public float getCache() {
return cache;
}
public float getSwap() {
return swap;
}
public float getSwapFree() {
return swapFree;
}
@Override
public String toString() {
return "Memory [total=" + total + ", totalFree=" + totalFree
+ ", buffer=" + buffer + ", cache=" + cache + ", swap=" + swap
+ ", swapFree=" + swapFree + "]";
}
}
```
|
```javascript
/**
* Query Parameter Transform.
*/
var _ = require('../util');
module.exports = function (options, next) {
var urlParams = Object.keys(_.url.options.params), query = {}, url = next(options);
_.each(options.params, function (value, key) {
if (urlParams.indexOf(key) === -1) {
query[key] = value;
}
});
query = _.url.params(query);
if (query) {
url += (url.indexOf('?') == -1 ? '?' : '&') + query;
}
return url;
};
```
|
Intercourse, subtitled Contemporary Canadian Writing, was a literary magazine published in Montreal from 1966 to 1971. In all 14 issues appeared. The magazine was established and edited by Raymond Fraser and LeRoy Johnson and had a number of guest editors, including Alden Nowlan, Al Pittman, Louis Cormier, and Bernell MacDonald. Among the contributors were such Canadian literary figures as Irving Layton, Al Purdy, Elizabeth Brewster, Leonard Cohen, Hugh Hood, Marty Gervais, John Glassco, Patrick Lane, Robert Hawkes, Silver Donald Cameron, Fred Cogswell, George Bowering , and Seymour Mayne.
The final issue of Intercourse (No. 14) was guest-edited by Louis Cormier and was heavily Buddhist-oriented
References
J. R. (Tim) Struthers, ed. The Montreal Story Tellers. Montreal: Véhicule Press, 1985. 191.
Raymond Fraser. When The Earth Was Flat. Windsor: Black Moss Press, 2007. 162
1966 establishments in Canada
1971 disestablishments in Canada
Defunct literary magazines published in Canada
English-language magazines
Magazines established in 1966
Magazines disestablished in 1971
Poetry magazines published in Canada
Magazines published in Montreal
|
```javascript
/**
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
'use strict';
// MODULES //
var bench = require( '@stdlib/bench' );
var pow = require( '@stdlib/math/base/special/pow' );
var randu = require( '@stdlib/random/base/randu' );
var isArray = require( '@stdlib/assert/is-array' );
var pkg = require( './../package.json' ).name;
var logspace = require( './../lib' );
// FUNCTIONS //
/**
* Creates a benchmark function.
*
* @private
* @param {PositiveInteger} len - array length
* @returns {Function} benchmark function
*/
function createBenchmark( len ) {
return benchmark;
/**
* Benchmark function.
*
* @private
* @param {Benchmark} b - benchmark instance
*/
function benchmark( b ) {
var x2;
var v;
var i;
b.tic();
for ( i = 0; i < b.iterations; i++ ) {
x2 = randu() * 10.0;
v = logspace( 0.0, x2, len );
if ( typeof v !== 'object' ) {
b.fail( 'should return an array' );
}
}
b.toc();
if ( !isArray( v ) ) {
b.fail( 'should return an array' );
}
b.pass( 'benchmark finished' );
b.end();
}
}
// MAIN //
/**
* Main execution sequence.
*
* @private
*/
function main() {
var len;
var min;
var max;
var f;
var i;
min = 1; // 10^min
max = 6; // 10^max
for ( i = min; i <= max; i++ ) {
len = pow( 10, i );
f = createBenchmark( len );
bench( pkg+':len='+len, f );
}
}
main();
```
|
Reno station is an Amtrak intercity train station in Reno, Nevada, served by the California Zephyr train. It is also served by Amtrak Thruway Motorcoach routes to Sacramento.
Description
The station is located at 280 North Center Street in downtown Reno. The tracks are owned by the Union Pacific Railroad, while the station and platform are owned by the city of Reno. The station does not have a parking lot. The tracks are placed below ground level as they pass through the heart of downtown Reno. As of 2014, the station was served by the once-daily California Zephyr, running between Chicago and Emeryville, California (in the San Francisco Bay Area). The previous year, the station served 78,827 passengers, or about 216 per day. The station is popular with passengers traveling in both directions between Northern California and Reno.
Three Amtrak Thruway Motorcoach routes, two originating at the station and one at the Nugget Casino Resort in Sparks, connect the station to Sacramento.
History
A depot has existed at this location since the first transcontinental railroad arrived in Reno in 1868. A series of wooden depots built by the Central Pacific Railroad burned down. The current stucco depot was built by the Southern Pacific Railroad in 1926. The Southern Pacific Depot was also used by the Virginia & Truckee Railroad until 1950, when the railroad ceased operations. The Western Pacific Railroad historically provided service to Reno, but never used this station, instead using the (now disused for rail service) Nevada-California-Oregon Railroad Depot, a few blocks to the east.
ReTRAC
The station was enlarged in 2007 as part of the Reno Transportation Rail Access Corridor (ReTRAC) project, which grade separated the tracks to mostly eliminate street running in downtown Reno. In the process of excavating around the depot, many artifacts from Reno's past were discovered including a long filled-in pedestrian tunnel and a previously unknown basement at a former masonic lodge. Many items from the excavation are on display in the station lobby, including an old cistern used by the fire department, a horse watering fountain, Native American artifacts, and several bottles dating as far back as the 1860s. As part of the renovation, Amtrak moved most of its operations to a glass-enclosed addition near the trench, though passengers can still use the original waiting area.
On December 4, 2012, it was announced that the station would be placed on the National Register of Historic Places.
See also
Nevada-California-Oregon Railroad Depot – former Western Pacific Reno station
Notes
References
External links
Reno Amtrak Station TrainWeb
ReTRAC Project City of Reno
Amtrak stations in Nevada
Buildings and structures in Reno, Nevada
Transportation in Reno, Nevada
Railway stations in the United States opened in 1926
Former Southern Pacific Railroad stations in Nevada
History of Reno, Nevada
National Register of Historic Places in Reno, Nevada
Railway stations on the National Register of Historic Places in Nevada
Railway stations in the United States opened in 1868
|
```kotlin
package net.println.kt13.module
import com.google.gson.Gson
import dagger.Module
import dagger.Provides
import javax.inject.Singleton
/**
* Created by benny on 12/11/16.
*/
@Module
class GsonModule {
@Singleton @Provides fun gson(): Gson = Gson()
}
```
|
```smalltalk
/****************************************************************************
*
* path_to_url
* path_to_url
* path_to_url
****************************************************************************/
using System.Linq;
using UnityEngine;
using UnityEngine.UI;
namespace QFramework
{
public abstract class AbstractBind : MonoBehaviour, IBindOld
{
[HideInInspector] public BindType MarkType = BindType.DefaultUnityElement;
public string Comment => CustomComment;
public Transform Transform => transform;
[HideInInspector] public string CustomComponentName;
[HideInInspector] public string CustomComment;
public BindType GetBindType()
{
return MarkType;
}
[HideInInspector] [SerializeField] private string mComponentName;
public virtual string TypeName
{
get
{
if (MarkType == BindType.DefaultUnityElement)
{
if (string.IsNullOrEmpty(mComponentName))
{
mComponentName = GetDefaultComponentName();
}
else if (!GetComponent(mComponentName) && !GetComponent(mComponentName.Split('.').Last()))
{
mComponentName = GetDefaultComponentName();
}
return mComponentName;
}
if (MarkType == BindType.Element || MarkType == BindType.Component)
{
return CustomComponentName;
}
return mComponentName;
}
}
/// <summary>
///
/// </summary>
/// <returns></returns>
string GetDefaultComponentName()
{
if (GetComponent<ViewController>()) return GetComponent<ViewController>().GetType().FullName;
if (GetComponent("SkeletonAnimation")) return "SkeletonAnimation";
if (GetComponent<ScrollRect>()) return "UnityEngine.UI.ScrollRect";
if (GetComponent<InputField>()) return "UnityEngine.UI.InputField";
// text mesh pro supported
if (GetComponent("TMP.TextMeshProUGUI")) return "TMP.TextMeshProUGUI";
if (GetComponent("TMPro.TextMeshProUGUI")) return "TMPro.TextMeshProUGUI";
if (GetComponent("TMPro.TextMeshPro")) return "TMPro.TextMeshPro";
if (GetComponent("TMPro.TMP_InputField")) return "TMPro.TMP_InputField";
// ugui bind
if (GetComponent<Dropdown>()) return "UnityEngine.UI.Dropdown";
if (GetComponent<Button>()) return "UnityEngine.UI.Button";
if (GetComponent<Text>()) return "UnityEngine.UI.Text";
if (GetComponent<RawImage>()) return "UnityEngine.UI.RawImage";
if (GetComponent<Toggle>()) return "UnityEngine.UI.Toggle";
if (GetComponent<Slider>()) return "UnityEngine.UI.Slider";
if (GetComponent<Scrollbar>()) return "UnityEngine.UI.Scrollbar";
if (GetComponent<Image>()) return "UnityEngine.UI.Image";
if (GetComponent<ToggleGroup>()) return "UnityEngine.UI.ToggleGroup";
// other
if (GetComponent<Rigidbody>()) return "Rigidbody";
if (GetComponent<Rigidbody2D>()) return "Rigidbody2D";
if (GetComponent<BoxCollider2D>()) return "BoxCollider2D";
if (GetComponent<BoxCollider>()) return "BoxCollider";
if (GetComponent<CircleCollider2D>()) return "CircleCollider2D";
if (GetComponent<SphereCollider>()) return "SphereCollider";
if (GetComponent<MeshCollider>()) return "MeshCollider";
if (GetComponent<Collider>()) return "Collider";
if (GetComponent<Collider2D>()) return "Collider2D";
if (GetComponent<Animator>()) return "Animator";
if (GetComponent<Canvas>()) return "Canvas";
if (GetComponent<Camera>()) return "Camera";
// if (GetComponent("Empty4Raycast")) return "QFramework.Empty4Raycast";
if (GetComponent<RectTransform>()) return "RectTransform";
if (GetComponent<MeshRenderer>()) return "MeshRenderer";
if (GetComponent<SpriteRenderer>()) return "SpriteRenderer";
// NGUI
#if NGUI
if (GetComponent("UIButton")) return "UIButton";
if (GetComponent("UILabel")) return "UILabel";
if (GetComponent("UISprite")) return "UISprite";
if (GetComponent("UISlider")) return "UISlider";
if (GetComponent("UITexture")) return "UITexture";
#endif
return "Transform";
}
}
}
```
|
Red Davis (1915–2002) was an American baseball player.
Red Davis may also refer to:
Red Davis (American football) (1907–1988), American football player
Red Davis (basketball) (born 1932), American basketball player
See Also
Redd Davis (1896–??), Canadian film director
|
```go
package utilities
// An OpCode is a opcode of compiled path patterns.
type OpCode int
// These constants are the valid values of OpCode.
const (
// OpNop does nothing
OpNop = OpCode(iota)
// OpPush pushes a component to stack
OpPush
// OpLitPush pushes a component to stack if it matches to the literal
OpLitPush
// OpPushM concatenates the remaining components and pushes it to stack
OpPushM
// OpConcatN pops N items from stack, concatenates them and pushes it back to stack
OpConcatN
// OpCapture pops an item and binds it to the variable
OpCapture
// OpEnd is the least postive invalid opcode.
OpEnd
)
```
|
```html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Find Location and Scale Examples</title>
<link rel="stylesheet" href="../../../math.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../../index.html" title="Math Toolkit 2.6.0">
<link rel="up" href="../weg.html" title="Worked Examples">
<link rel="prev" href="error_eg.html" title="Error Handling Example">
<link rel="next" href="find_eg/find_location_eg.html" title="Find Location (Mean) Example">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="path_to_url">People</a></td>
<td align="center"><a href="path_to_url">FAQ</a></td>
<td align="center"><a href="../../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="error_eg.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../weg.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="find_eg/find_location_eg.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="math_toolkit.stat_tut.weg.find_eg"></a><a class="link" href="find_eg.html" title="Find Location and Scale Examples">Find Location and
Scale Examples</a>
</h4></div></div></div>
<div class="toc"><dl class="toc">
<dt><span class="section"><a href="find_eg/find_location_eg.html">Find
Location (Mean) Example</a></span></dt>
<dt><span class="section"><a href="find_eg/find_scale_eg.html">Find
Scale (Standard Deviation) Example</a></span></dt>
<dt><span class="section"><a href="find_eg/find_mean_and_sd_eg.html">Find
mean and standard deviation example</a></span></dt>
</dl></div>
</div>
<table xmlns:rev="path_to_url~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
Agrawal, Anton Bikineev, Paul A. Bristow, Marco Guazzone, Christopher Kormanyos,
Hubert Holin, Bruno Lalande, John Maddock, Jeremy Murphy, Johan Råde, Gautam
Sewani, Benjamin Sobotta, Nicholas Thompson, Thijs van den Berg, Daryle Walker
and Xiaogang Zhang<p>
file LICENSE_1_0.txt or copy at <a href="path_to_url" target="_top">path_to_url
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="error_eg.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../weg.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="find_eg/find_location_eg.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
```
|
Fernando Arlete II (born 5 November 1979) is a Guinea-Bissauan athlete. He competed for Guinea-Bissau at the 2000 Summer Olympics in the men's 100 metres event but did not finish.
References
External links
1979 births
Living people
Bissau-Guinean male sprinters
Olympic athletes for Guinea-Bissau
Athletes (track and field) at the 2000 Summer Olympics
|
```c
/*
* This is an open source non-commercial project. Dear PVS-Studio, please check it.
* PVS-Studio Static Code Analyzer for C, C++ and C#: path_to_url
*/
#include <config.h>
/* A Bison parser, made by GNU Bison 3.8.2. */
/* Bison implementation for Yacc-like parsers in C
Inc.
This program is free software: you can redistribute it and/or modify
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
along with this program. If not, see <path_to_url */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
especially those whose name start with YY_ or yy_. They are
private implementation details that can be changed or removed. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output, and Bison version. */
#define YYBISON 30802
/* Bison version string. */
#define YYBISON_VERSION "3.8.2"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 0
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* First part of user prologue. */
#line 1 "getdate.y"
/*
** Originally written by Steven M. Bellovin <smb@research.att.com> while
** at the University of North Carolina at Chapel Hill. Later tweaked by
** a couple of people on Usenet. Completely overhauled by Rich $alz
** <rsalz@bbn.com> and Jim Berets <jberets@bbn.com> in August, 1990;
**
** This grammar has 10 shift/reduce conflicts.
**
** This code is in the public domain and has no copyright.
*/
/* SUPPRESS 287 on yaccpar_sccsid *//* Unused static variable */
/* SUPPRESS 288 on yyerrlab *//* Label unused */
// PVS Studio suppression
// -V::560, 592, 1037, 1042
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if defined(HAVE_STDINT_H)
# include <stdint.h>
#elif defined(HAVE_INTTYPES_H)
# include <inttypes.h>
#endif
#include <time.h>
#include <limits.h>
#include <ctype.h>
#include <sudo_compat.h>
#define EPOCH 1970
#define HOUR(x) ((time_t)(x) * 60)
#define SECSPERDAY (24L * 60L * 60L)
/*
** An entry in the lexical lookup table.
*/
typedef struct _TABLE {
const char *name;
int type;
time_t value;
} TABLE;
/*
** Daylight-savings mode: on, off, or not yet known.
*/
typedef enum _DSTMODE {
DSTon, DSToff, DSTmaybe
} DSTMODE;
/*
** Meridian: am, pm, or 24-hour style.
*/
typedef enum _MERIDIAN {
MERam, MERpm, MER24
} MERIDIAN;
/*
** Global variables. We could get rid of most of these by using a good
** union as the yacc stack. (This routine was originally written before
** yacc had the %union construct.) Maybe someday; right now we only use
** the %union very rarely.
*/
static char *yyInput;
static DSTMODE yyDSTmode;
static time_t yyDayOrdinal;
static time_t yyDayNumber;
static int yyHaveDate;
static int yyHaveDay;
static int yyHaveRel;
static int yyHaveTime;
static int yyHaveZone;
static time_t yyTimezone;
static time_t yyDay;
static time_t yyHour;
static time_t yyMinutes;
static time_t yyMonth;
static time_t yySeconds;
static time_t yyYear;
static MERIDIAN yyMeridian;
static time_t yyRelMonth;
static time_t yyRelSeconds;
static int yylex(void);
int yyparse(void);
void yyerror(const char *s);
#line 167 "getdate.c"
# ifndef YY_CAST
# ifdef __cplusplus
# define YY_CAST(Type, Val) static_cast<Type> (Val)
# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
# else
# define YY_CAST(Type, Val) ((Type) (Val))
# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
# endif
# endif
# ifndef YY_NULLPTR
# if defined __cplusplus
# if 201103L <= __cplusplus
# define YY_NULLPTR nullptr
# else
# define YY_NULLPTR 0
# endif
# else
# define YY_NULLPTR ((void*)0)
# endif
# endif
/* Debug traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
#if YYDEBUG
extern int yydebug;
#endif
/* Token kinds. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
enum yytokentype
{
YYEMPTY = -2,
YYEOF = 0, /* "end of file" */
YYerror = 256, /* error */
YYUNDEF = 257, /* "invalid token" */
tAGO = 258, /* tAGO */
tID = 259, /* tID */
tDST = 260, /* tDST */
tDAY = 261, /* tDAY */
tDAYZONE = 262, /* tDAYZONE */
tMINUTE_UNIT = 263, /* tMINUTE_UNIT */
tMONTH = 264, /* tMONTH */
tMONTH_UNIT = 265, /* tMONTH_UNIT */
tSEC_UNIT = 266, /* tSEC_UNIT */
tSNUMBER = 267, /* tSNUMBER */
tUNUMBER = 268, /* tUNUMBER */
tZONE = 269, /* tZONE */
tMERIDIAN = 270 /* tMERIDIAN */
};
typedef enum yytokentype yytoken_kind_t;
#endif
/* Token kinds. */
#define YYEMPTY -2
#define YYEOF 0
#define YYerror 256
#define YYUNDEF 257
#define tAGO 258
#define tID 259
#define tDST 260
#define tDAY 261
#define tDAYZONE 262
#define tMINUTE_UNIT 263
#define tMONTH 264
#define tMONTH_UNIT 265
#define tSEC_UNIT 266
#define tSNUMBER 267
#define tUNUMBER 268
#define tZONE 269
#define tMERIDIAN 270
/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
union YYSTYPE
{
#line 97 "getdate.y"
time_t Number;
enum _MERIDIAN Meridian;
#line 252 "getdate.c"
};
typedef union YYSTYPE YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_DECLARED 1
#endif
extern YYSTYPE yylval;
int yyparse (void);
/* Symbol kind. */
enum yysymbol_kind_t
{
YYSYMBOL_YYEMPTY = -2,
YYSYMBOL_YYEOF = 0, /* "end of file" */
YYSYMBOL_YYerror = 1, /* error */
YYSYMBOL_YYUNDEF = 2, /* "invalid token" */
YYSYMBOL_tAGO = 3, /* tAGO */
YYSYMBOL_tID = 4, /* tID */
YYSYMBOL_tDST = 5, /* tDST */
YYSYMBOL_tDAY = 6, /* tDAY */
YYSYMBOL_tDAYZONE = 7, /* tDAYZONE */
YYSYMBOL_tMINUTE_UNIT = 8, /* tMINUTE_UNIT */
YYSYMBOL_tMONTH = 9, /* tMONTH */
YYSYMBOL_tMONTH_UNIT = 10, /* tMONTH_UNIT */
YYSYMBOL_tSEC_UNIT = 11, /* tSEC_UNIT */
YYSYMBOL_tSNUMBER = 12, /* tSNUMBER */
YYSYMBOL_tUNUMBER = 13, /* tUNUMBER */
YYSYMBOL_tZONE = 14, /* tZONE */
YYSYMBOL_tMERIDIAN = 15, /* tMERIDIAN */
YYSYMBOL_16_ = 16, /* ':' */
YYSYMBOL_17_ = 17, /* ',' */
YYSYMBOL_18_ = 18, /* '/' */
YYSYMBOL_YYACCEPT = 19, /* $accept */
YYSYMBOL_spec = 20, /* spec */
YYSYMBOL_item = 21, /* item */
YYSYMBOL_time = 22, /* time */
YYSYMBOL_zone = 23, /* zone */
YYSYMBOL_day = 24, /* day */
YYSYMBOL_date = 25, /* date */
YYSYMBOL_rel = 26, /* rel */
YYSYMBOL_relunit = 27, /* relunit */
YYSYMBOL_number = 28, /* number */
YYSYMBOL_o_merid = 29 /* o_merid */
};
typedef enum yysymbol_kind_t yysymbol_kind_t;
#ifdef short
# undef short
#endif
/* On compilers that do not define __PTRDIFF_MAX__ etc., make sure
<limits.h> and (if available) <stdint.h> are included
so that the code can choose integer types of a good width. */
#ifndef __PTRDIFF_MAX__
# include <limits.h> /* INFRINGES ON USER NAME SPACE */
# if defined HAVE_STDINT_H
# include <stdint.h> /* INFRINGES ON USER NAME SPACE */
# define YY_STDINT_H
# endif
#endif
/* Narrow types that promote to a signed type and that can represent a
signed or unsigned integer of at least N bits. In tables they can
save space and decrease cache pressure. Promoting to a signed type
helps avoid bugs in integer arithmetic. */
#ifdef __INT_LEAST8_MAX__
typedef __INT_LEAST8_TYPE__ yytype_int8;
#elif defined YY_STDINT_H
typedef int_least8_t yytype_int8;
#else
typedef signed char yytype_int8;
#endif
#ifdef __INT_LEAST16_MAX__
typedef __INT_LEAST16_TYPE__ yytype_int16;
#elif defined YY_STDINT_H
typedef int_least16_t yytype_int16;
#else
typedef short yytype_int16;
#endif
/* Work around bug in HP-UX 11.23, which defines these macros
incorrectly for preprocessor constants. This workaround can likely
be removed in 2023, as HPE has promised support for HP-UX 11.23
(aka HP-UX 11i v2) only through the end of 2022; see Table 2 of
<path_to_url */
#ifdef __hpux
# undef UINT_LEAST8_MAX
# undef UINT_LEAST16_MAX
# define UINT_LEAST8_MAX 255
# define UINT_LEAST16_MAX 65535
#endif
#if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__
typedef __UINT_LEAST8_TYPE__ yytype_uint8;
#elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST8_MAX <= INT_MAX)
typedef uint_least8_t yytype_uint8;
#elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX
typedef unsigned char yytype_uint8;
#else
typedef short yytype_uint8;
#endif
#if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__
typedef __UINT_LEAST16_TYPE__ yytype_uint16;
#elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST16_MAX <= INT_MAX)
typedef uint_least16_t yytype_uint16;
#elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX
typedef unsigned short yytype_uint16;
#else
typedef int yytype_uint16;
#endif
#ifndef YYPTRDIFF_T
# if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__
# define YYPTRDIFF_T __PTRDIFF_TYPE__
# define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__
# elif defined PTRDIFF_MAX
# ifndef ptrdiff_t
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# endif
# define YYPTRDIFF_T ptrdiff_t
# define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
# else
# define YYPTRDIFF_T long
# define YYPTRDIFF_MAXIMUM LONG_MAX
# endif
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned
# endif
#endif
#define YYSIZE_MAXIMUM \
YY_CAST (YYPTRDIFF_T, \
(YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1) \
? YYPTRDIFF_MAXIMUM \
: YY_CAST (YYSIZE_T, -1)))
#define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X))
/* Stored state numbers (used for stacks). */
typedef yytype_int8 yy_state_t;
/* State numbers in computations. */
typedef int yy_state_fast_t;
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
# endif
# endif
# ifndef YY_
# define YY_(Msgid) Msgid
# endif
#endif
#ifndef YY_ATTRIBUTE_PURE
# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
# else
# define YY_ATTRIBUTE_PURE
# endif
#endif
#ifndef YY_ATTRIBUTE_UNUSED
# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
# else
# define YY_ATTRIBUTE_UNUSED
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YY_USE(E) ((void) (E))
#else
# define YY_USE(E) /* empty */
#endif
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
#if defined __GNUC__ && ! defined __ICC && 406 <= __GNUC__ * 100 + __GNUC_MINOR__
# if __GNUC__ * 100 + __GNUC_MINOR__ < 407
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")
# else
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# endif
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__
# define YY_IGNORE_USELESS_CAST_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"")
# define YY_IGNORE_USELESS_CAST_END \
_Pragma ("GCC diagnostic pop")
#endif
#ifndef YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_END
#endif
#define YY_ASSERT(E) ((void) (0 && (E)))
#if !defined yyoverflow
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
/* Use EXIT_SUCCESS as a witness for stdlib.h. */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's 'empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* !defined yyoverflow */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yy_state_t yyss_alloc;
YYSTYPE yyvs_alloc;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
YYPTRDIFF_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / YYSIZEOF (*yyptr); \
} \
while (0)
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(Dst, Src, Count) \
__builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
# else
# define YYCOPY(Dst, Src, Count) \
do \
{ \
YYPTRDIFF_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \
} \
while (0)
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 2
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 41
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 19
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 11
/* YYNRULES -- Number of rules. */
#define YYNRULES 42
/* YYNSTATES -- Number of states. */
#define YYNSTATES 52
/* YYMAXUTOK -- Last valid token kind. */
#define YYMAXUTOK 270
/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, with out-of-bounds checking. */
#define YYTRANSLATE(YYX) \
(0 <= (YYX) && (YYX) <= YYMAXUTOK \
? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \
: YYSYMBOL_YYUNDEF)
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
as returned by yylex. */
static const yytype_int8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 17, 2, 2, 18, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 16, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15
};
#if YYDEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
static const yytype_int16 yyrline[] =
{
0, 111, 111, 112, 115, 118, 121, 124, 127, 130,
133, 139, 145, 152, 158, 168, 172, 177, 183, 187,
191, 197, 201, 212, 218, 224, 228, 233, 237, 244,
248, 251, 254, 257, 260, 263, 266, 269, 272, 275,
280, 307, 310
};
#endif
/** Accessing symbol of state STATE. */
#define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State])
#if YYDEBUG || 0
/* The user-facing name of the symbol whose (internal) number is
YYSYMBOL. No bounds checking. */
static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED;
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
{
"\"end of file\"", "error", "\"invalid token\"", "tAGO", "tID", "tDST",
"tDAY", "tDAYZONE", "tMINUTE_UNIT", "tMONTH", "tMONTH_UNIT", "tSEC_UNIT",
"tSNUMBER", "tUNUMBER", "tZONE", "tMERIDIAN", "':'", "','", "'/'",
"$accept", "spec", "item", "time", "zone", "day", "date", "rel",
"relunit", "number", "o_merid", YY_NULLPTR
};
static const char *
yysymbol_name (yysymbol_kind_t yysymbol)
{
return yytname[yysymbol];
}
#endif
#define YYPACT_NINF (-12)
#define yypact_value_is_default(Yyn) \
((Yyn) == YYPACT_NINF)
#define YYTABLE_NINF (-1)
#define yytable_value_is_error(Yyn) \
0
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int8 yypact[] =
{
-12, 0, -12, -1, -12, -12, 10, -12, -12, 18,
9, 17, -12, -12, -12, -12, -12, -12, 27, -12,
-12, 15, -12, -12, -12, -12, -12, -10, -12, -12,
21, -12, 22, 23, -12, -12, 24, -12, -12, -12,
-11, 20, -12, -12, -12, 26, -12, 28, 19, -12,
-12, -12
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE does not specify something else to do. Zero
means the default is an error. */
static const yytype_int8 yydefact[] =
{
2, 0, 1, 18, 16, 33, 0, 39, 36, 0,
40, 15, 3, 4, 5, 7, 6, 8, 30, 9,
19, 25, 32, 37, 34, 20, 31, 27, 38, 35,
0, 10, 0, 0, 17, 29, 0, 24, 28, 23,
41, 21, 26, 12, 42, 0, 11, 0, 41, 22,
14, 13
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int8 yypgoto[] =
{
-12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
-8
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int8 yydefgoto[] =
{
0, 1, 12, 13, 14, 15, 16, 17, 18, 19,
46
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule whose
number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_int8 yytable[] =
{
2, 43, 37, 38, 44, 45, 3, 4, 5, 6,
7, 8, 9, 10, 11, 25, 20, 26, 27, 28,
29, 30, 34, 21, 31, 32, 22, 33, 23, 24,
35, 50, 36, 39, 44, 40, 41, 42, 47, 48,
51, 49
};
static const yytype_int8 yycheck[] =
{
0, 12, 12, 13, 15, 16, 6, 7, 8, 9,
10, 11, 12, 13, 14, 6, 17, 8, 9, 10,
11, 12, 5, 13, 15, 16, 8, 18, 10, 11,
3, 12, 17, 12, 15, 13, 13, 13, 18, 13,
48, 13
};
/* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of
state STATE-NUM. */
static const yytype_int8 yystos[] =
{
0, 20, 0, 6, 7, 8, 9, 10, 11, 12,
13, 14, 21, 22, 23, 24, 25, 26, 27, 28,
17, 13, 8, 10, 11, 6, 8, 9, 10, 11,
12, 15, 16, 18, 5, 3, 17, 12, 13, 12,
13, 13, 13, 12, 15, 16, 29, 18, 13, 13,
12, 29
};
/* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM. */
static const yytype_int8 yyr1[] =
{
0, 19, 20, 20, 21, 21, 21, 21, 21, 21,
22, 22, 22, 22, 22, 23, 23, 23, 24, 24,
24, 25, 25, 25, 25, 25, 25, 25, 25, 26,
26, 27, 27, 27, 27, 27, 27, 27, 27, 27,
28, 29, 29
};
/* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM. */
static const yytype_int8 yyr2[] =
{
0, 2, 0, 2, 1, 1, 1, 1, 1, 1,
2, 4, 4, 6, 6, 1, 1, 2, 1, 2,
2, 3, 5, 3, 3, 2, 4, 2, 3, 2,
1, 2, 2, 1, 2, 2, 1, 2, 2, 1,
1, 0, 1
};
enum { YYENOMEM = -2 };
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
#define YYNOMEM goto yyexhaustedlab
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY) \
{ \
yychar = (Token); \
yylval = (Value); \
YYPOPSTACK (yylen); \
yystate = *yyssp; \
goto yybackup; \
} \
else \
{ \
yyerror (YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (0)
/* Backward compatibility with an undocumented macro.
Use YYerror or YYUNDEF. */
#define YYERRCODE YYUNDEF
/* Enable debugging if requested. */
#if YYDEBUG
# ifndef YYFPRINTF
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
} while (0)
# define YY_SYMBOL_PRINT(Title, Kind, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Kind, Value); \
YYFPRINTF (stderr, "\n"); \
} \
} while (0)
/*-----------------------------------.
| Print this symbol's value on YYO. |
`-----------------------------------*/
static void
yy_symbol_value_print (FILE *yyo,
yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep)
{
FILE *yyoutput = yyo;
YY_USE (yyoutput);
if (!yyvaluep)
return;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
YY_USE (yykind);
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/*---------------------------.
| Print this symbol on YYO. |
`---------------------------*/
static void
yy_symbol_print (FILE *yyo,
yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep)
{
YYFPRINTF (yyo, "%s %s (",
yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind));
yy_symbol_value_print (yyo, yykind, yyvaluep);
YYFPRINTF (yyo, ")");
}
/*your_sha256_hash--.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`your_sha256_hash--*/
static void
yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop)
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
{
int yybot = *yybottom;
YYFPRINTF (stderr, " %d", yybot);
}
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
} while (0)
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
static void
yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp,
int yyrule)
{
int yylno = yyrline[yyrule];
int yynrhs = yyr2[yyrule];
int yyi;
YYFPRINTF (stderr, "Reducing stack by rule %d (line %d):\n",
yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
YYFPRINTF (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr,
YY_ACCESSING_SYMBOL (+yyssp[yyi + 1 - yynrhs]),
&yyvsp[(yyi + 1) - (yynrhs)]);
YYFPRINTF (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyssp, yyvsp, Rule); \
} while (0)
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args) ((void) 0)
# define YY_SYMBOL_PRINT(Title, Kind, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used).
Do not make this value too large; the results are undefined if
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
evaluated with infinite-precision integer arithmetic. */
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
static void
yydestruct (const char *yymsg,
yysymbol_kind_t yykind, YYSTYPE *yyvaluep)
{
YY_USE (yyvaluep);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp);
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
YY_USE (yykind);
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/* Lookahead token kind. */
int yychar;
/* The semantic value of the lookahead symbol. */
YYSTYPE yylval;
/* Number of syntax errors so far. */
int yynerrs;
/*----------.
| yyparse. |
`----------*/
int
yyparse (void)
{
yy_state_fast_t yystate = 0;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus = 0;
/* Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* Their size. */
YYPTRDIFF_T yystacksize = YYINITDEPTH;
/* The state stack: array, bottom, top. */
yy_state_t yyssa[YYINITDEPTH];
yy_state_t *yyss = yyssa;
yy_state_t *yyssp = yyss;
/* The semantic value stack: array, bottom, top. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs = yyvsa;
YYSTYPE *yyvsp = yyvs;
int yyn;
/* The return value of yyparse. */
int yyresult;
/* Lookahead symbol kind. */
yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
YYDPRINTF ((stderr, "Starting parse\n"));
yychar = YYEMPTY; /* Cause a token to be read. */
goto yysetstate;
/*------------------------------------------------------------.
| yynewstate -- push a new state, which is found in yystate. |
`------------------------------------------------------------*/
yynewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. So pushing a state here evens the stacks. */
yyssp++;
/*your_sha256_hash----.
| yysetstate -- set current state (the top of the stack) to yystate. |
`your_sha256_hash----*/
yysetstate:
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
YY_ASSERT (0 <= yystate && yystate < YYNSTATES);
YY_IGNORE_USELESS_CAST_BEGIN
*yyssp = YY_CAST (yy_state_t, yystate);
YY_IGNORE_USELESS_CAST_END
YY_STACK_PRINT (yyss, yyssp);
if (yyss + yystacksize - 1 <= yyssp)
#if !defined yyoverflow && !defined YYSTACK_RELOCATE
YYNOMEM;
#else
{
/* Get the current used size of the three stacks, in elements. */
YYPTRDIFF_T yysize = yyssp - yyss + 1;
# if defined yyoverflow
{
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into
memory. */
yy_state_t *yyss1 = yyss;
YYSTYPE *yyvs1 = yyvs;
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * YYSIZEOF (*yyssp),
&yyvs1, yysize * YYSIZEOF (*yyvsp),
&yystacksize);
yyss = yyss1;
yyvs = yyvs1;
}
# else /* defined YYSTACK_RELOCATE */
/* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize)
YYNOMEM;
yystacksize *= 2;
if (YYMAXDEPTH < yystacksize)
yystacksize = YYMAXDEPTH;
{
yy_state_t *yyss1 = yyss;
union yyalloc *yyptr =
YY_CAST (union yyalloc *,
YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize))));
if (! yyptr)
YYNOMEM;
YYSTACK_RELOCATE (yyss_alloc, yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs);
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
# endif
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
YY_IGNORE_USELESS_CAST_BEGIN
YYDPRINTF ((stderr, "Stack size increased to %ld\n",
YY_CAST (long, yystacksize)));
YY_IGNORE_USELESS_CAST_END
if (yyss + yystacksize - 1 <= yyssp)
YYABORT;
}
#endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */
if (yystate == YYFINAL)
YYACCEPT;
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
lookahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yypact_value_is_default (yyn))
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* YYCHAR is either empty, or end-of-input, or a valid lookahead. */
if (yychar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token\n"));
yychar = yylex ();
}
if (yychar <= YYEOF)
{
yychar = YYEOF;
yytoken = YYSYMBOL_YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else if (yychar == YYerror)
{
/* The scanner already issued an error message, process directly
to error recovery. But do not keep the error token as
lookahead, it is too special and may lead us to an endless
loop in error recovery. */
yychar = YYUNDEF;
yytoken = YYSYMBOL_YYerror;
goto yyerrlab1;
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
if (yyn <= 0)
{
if (yytable_value_is_error (yyn))
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
yystate = yyn;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
/* Discard the shifted token. */
yychar = YYEMPTY;
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- do a reduction. |
`-----------------------------*/
yyreduce:
/* yyn is the number of a rule to reduce with. */
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
'$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 4: /* item: time */
#line 115 "getdate.y"
{
yyHaveTime++;
}
#line 1290 "getdate.c"
break;
case 5: /* item: zone */
#line 118 "getdate.y"
{
yyHaveZone++;
}
#line 1298 "getdate.c"
break;
case 6: /* item: date */
#line 121 "getdate.y"
{
yyHaveDate++;
}
#line 1306 "getdate.c"
break;
case 7: /* item: day */
#line 124 "getdate.y"
{
yyHaveDay++;
}
#line 1314 "getdate.c"
break;
case 8: /* item: rel */
#line 127 "getdate.y"
{
yyHaveRel++;
}
#line 1322 "getdate.c"
break;
case 10: /* time: tUNUMBER tMERIDIAN */
#line 133 "getdate.y"
{
yyHour = (yyvsp[-1].Number);
yyMinutes = 0;
yySeconds = 0;
yyMeridian = (yyvsp[0].Meridian);
}
#line 1333 "getdate.c"
break;
case 11: /* time: tUNUMBER ':' tUNUMBER o_merid */
#line 139 "getdate.y"
{
yyHour = (yyvsp[-3].Number);
yyMinutes = (yyvsp[-1].Number);
yySeconds = 0;
yyMeridian = (yyvsp[0].Meridian);
}
#line 1344 "getdate.c"
break;
case 12: /* time: tUNUMBER ':' tUNUMBER tSNUMBER */
#line 145 "getdate.y"
{
yyHour = (yyvsp[-3].Number);
yyMinutes = (yyvsp[-1].Number);
yyMeridian = MER24;
yyDSTmode = DSToff;
yyTimezone = - ((yyvsp[0].Number) % 100 + ((yyvsp[0].Number) / 100) * 60);
}
#line 1356 "getdate.c"
break;
case 13: /* time: tUNUMBER ':' tUNUMBER ':' tUNUMBER o_merid */
#line 152 "getdate.y"
{
yyHour = (yyvsp[-5].Number);
yyMinutes = (yyvsp[-3].Number);
yySeconds = (yyvsp[-1].Number);
yyMeridian = (yyvsp[0].Meridian);
}
#line 1367 "getdate.c"
break;
case 14: /* time: tUNUMBER ':' tUNUMBER ':' tUNUMBER tSNUMBER */
#line 158 "getdate.y"
{
yyHour = (yyvsp[-5].Number);
yyMinutes = (yyvsp[-3].Number);
yySeconds = (yyvsp[-1].Number);
yyMeridian = MER24;
yyDSTmode = DSToff;
yyTimezone = - ((yyvsp[0].Number) % 100 + ((yyvsp[0].Number) / 100) * 60);
}
#line 1380 "getdate.c"
break;
case 15: /* zone: tZONE */
#line 168 "getdate.y"
{
yyTimezone = (yyvsp[0].Number);
yyDSTmode = DSToff;
}
#line 1389 "getdate.c"
break;
case 16: /* zone: tDAYZONE */
#line 172 "getdate.y"
{
yyTimezone = (yyvsp[0].Number);
yyDSTmode = DSTon;
}
#line 1398 "getdate.c"
break;
case 17: /* zone: tZONE tDST */
#line 177 "getdate.y"
{
yyTimezone = (yyvsp[-1].Number);
yyDSTmode = DSTon;
}
#line 1407 "getdate.c"
break;
case 18: /* day: tDAY */
#line 183 "getdate.y"
{
yyDayOrdinal = 1;
yyDayNumber = (yyvsp[0].Number);
}
#line 1416 "getdate.c"
break;
case 19: /* day: tDAY ',' */
#line 187 "getdate.y"
{
yyDayOrdinal = 1;
yyDayNumber = (yyvsp[-1].Number);
}
#line 1425 "getdate.c"
break;
case 20: /* day: tUNUMBER tDAY */
#line 191 "getdate.y"
{
yyDayOrdinal = (yyvsp[-1].Number);
yyDayNumber = (yyvsp[0].Number);
}
#line 1434 "getdate.c"
break;
case 21: /* date: tUNUMBER '/' tUNUMBER */
#line 197 "getdate.y"
{
yyMonth = (yyvsp[-2].Number);
yyDay = (yyvsp[0].Number);
}
#line 1443 "getdate.c"
break;
case 22: /* date: tUNUMBER '/' tUNUMBER '/' tUNUMBER */
#line 201 "getdate.y"
{
if ((yyvsp[-4].Number) >= 100) {
yyYear = (yyvsp[-4].Number);
yyMonth = (yyvsp[-2].Number);
yyDay = (yyvsp[0].Number);
} else {
yyMonth = (yyvsp[-4].Number);
yyDay = (yyvsp[-2].Number);
yyYear = (yyvsp[0].Number);
}
}
#line 1459 "getdate.c"
break;
case 23: /* date: tUNUMBER tSNUMBER tSNUMBER */
#line 212 "getdate.y"
{
/* ISO 8601 format. yyyy-mm-dd. */
yyYear = (yyvsp[-2].Number);
yyMonth = -(yyvsp[-1].Number);
yyDay = -(yyvsp[0].Number);
}
#line 1470 "getdate.c"
break;
case 24: /* date: tUNUMBER tMONTH tSNUMBER */
#line 218 "getdate.y"
{
/* e.g. 17-JUN-1992. */
yyDay = (yyvsp[-2].Number);
yyMonth = (yyvsp[-1].Number);
yyYear = -(yyvsp[0].Number);
}
#line 1481 "getdate.c"
break;
case 25: /* date: tMONTH tUNUMBER */
#line 224 "getdate.y"
{
yyMonth = (yyvsp[-1].Number);
yyDay = (yyvsp[0].Number);
}
#line 1490 "getdate.c"
break;
case 26: /* date: tMONTH tUNUMBER ',' tUNUMBER */
#line 228 "getdate.y"
{
yyMonth = (yyvsp[-3].Number);
yyDay = (yyvsp[-2].Number);
yyYear = (yyvsp[0].Number);
}
#line 1500 "getdate.c"
break;
case 27: /* date: tUNUMBER tMONTH */
#line 233 "getdate.y"
{
yyMonth = (yyvsp[0].Number);
yyDay = (yyvsp[-1].Number);
}
#line 1509 "getdate.c"
break;
case 28: /* date: tUNUMBER tMONTH tUNUMBER */
#line 237 "getdate.y"
{
yyMonth = (yyvsp[-1].Number);
yyDay = (yyvsp[-2].Number);
yyYear = (yyvsp[0].Number);
}
#line 1519 "getdate.c"
break;
case 29: /* rel: relunit tAGO */
#line 244 "getdate.y"
{
yyRelSeconds = -yyRelSeconds;
yyRelMonth = -yyRelMonth;
}
#line 1528 "getdate.c"
break;
case 31: /* relunit: tUNUMBER tMINUTE_UNIT */
#line 251 "getdate.y"
{
yyRelSeconds += (yyvsp[-1].Number) * (yyvsp[0].Number) * 60L;
}
#line 1536 "getdate.c"
break;
case 32: /* relunit: tSNUMBER tMINUTE_UNIT */
#line 254 "getdate.y"
{
yyRelSeconds += (yyvsp[-1].Number) * (yyvsp[0].Number) * 60L;
}
#line 1544 "getdate.c"
break;
case 33: /* relunit: tMINUTE_UNIT */
#line 257 "getdate.y"
{
yyRelSeconds += (yyvsp[0].Number) * 60L;
}
#line 1552 "getdate.c"
break;
case 34: /* relunit: tSNUMBER tSEC_UNIT */
#line 260 "getdate.y"
{
yyRelSeconds += (yyvsp[-1].Number);
}
#line 1560 "getdate.c"
break;
case 35: /* relunit: tUNUMBER tSEC_UNIT */
#line 263 "getdate.y"
{
yyRelSeconds += (yyvsp[-1].Number);
}
#line 1568 "getdate.c"
break;
case 36: /* relunit: tSEC_UNIT */
#line 266 "getdate.y"
{
yyRelSeconds++;
}
#line 1576 "getdate.c"
break;
case 37: /* relunit: tSNUMBER tMONTH_UNIT */
#line 269 "getdate.y"
{
yyRelMonth += (yyvsp[-1].Number) * (yyvsp[0].Number);
}
#line 1584 "getdate.c"
break;
case 38: /* relunit: tUNUMBER tMONTH_UNIT */
#line 272 "getdate.y"
{
yyRelMonth += (yyvsp[-1].Number) * (yyvsp[0].Number);
}
#line 1592 "getdate.c"
break;
case 39: /* relunit: tMONTH_UNIT */
#line 275 "getdate.y"
{
yyRelMonth += (yyvsp[0].Number);
}
#line 1600 "getdate.c"
break;
case 40: /* number: tUNUMBER */
#line 280 "getdate.y"
{
if (yyHaveTime && yyHaveDate && !yyHaveRel)
yyYear = (yyvsp[0].Number);
else {
if((yyvsp[0].Number)>10000) {
yyHaveDate++;
yyDay= ((yyvsp[0].Number))%100;
yyMonth= ((yyvsp[0].Number)/100)%100;
yyYear = (yyvsp[0].Number)/10000;
}
else {
yyHaveTime++;
if ((yyvsp[0].Number) < 100) {
yyHour = (yyvsp[0].Number);
yyMinutes = 0;
}
else {
yyHour = (yyvsp[0].Number) / 100;
yyMinutes = (yyvsp[0].Number) % 100;
}
yySeconds = 0;
yyMeridian = MER24;
}
}
}
#line 1630 "getdate.c"
break;
case 41: /* o_merid: %empty */
#line 307 "getdate.y"
{
(yyval.Meridian) = MER24;
}
#line 1638 "getdate.c"
break;
case 42: /* o_merid: tMERIDIAN */
#line 310 "getdate.y"
{
(yyval.Meridian) = (yyvsp[0].Meridian);
}
#line 1646 "getdate.c"
break;
#line 1650 "getdate.c"
default: break;
}
/* User semantic actions sometimes alter yychar, and that requires
that yytoken be updated with the new translation. We take the
approach of translating immediately before every use of yytoken.
One alternative is translating here after every semantic action,
but that translation would be missed if the semantic action invokes
YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
incorrect destructor might then be invoked immediately. In the
case of YYERROR or YYBACKUP, subsequent parser actions might lead
to an incorrect destructor call or verbose syntax error message
before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc);
YYPOPSTACK (yylen);
yylen = 0;
*++yyvsp = yyval;
/* Now 'shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule
number reduced by. */
{
const int yylhs = yyr1[yyn] - YYNTOKENS;
const int yyi = yypgoto[yylhs] + *yyssp;
yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
? yytable[yyi]
: yydefgoto[yylhs]);
}
goto yynewstate;
/*--------------------------------------.
| yyerrlab -- here on detecting error. |
`--------------------------------------*/
yyerrlab:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = yychar == YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar);
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
++yynerrs;
yyerror (YY_("syntax error"));
}
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse lookahead token after an
error, discard it. */
if (yychar <= YYEOF)
{
/* Return failure if at end of input. */
if (yychar == YYEOF)
YYABORT;
}
else
{
yydestruct ("Error: discarding",
yytoken, &yylval);
yychar = YYEMPTY;
}
}
/* Else will try to reuse lookahead token after shifting the error
token. */
goto yyerrlab1;
/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR. |
`---------------------------------------------------*/
yyerrorlab:
/* Pacify compilers when the user code never invokes YYERROR and the
label yyerrorlab therefore never appears in user code. */
if (0)
YYERROR;
++yynerrs;
/* Do not reclaim the symbols of the rule whose action triggered
this YYERROR. */
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
yystate = *yyssp;
goto yyerrlab1;
/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/
yyerrlab1:
yyerrstatus = 3; /* Each real token shifted decrements this. */
/* Pop stack until we find a state that shifts the error token. */
for (;;)
{
yyn = yypact[yystate];
if (!yypact_value_is_default (yyn))
{
yyn += YYSYMBOL_YYerror;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror)
{
yyn = yytable[yyn];
if (0 < yyn)
break;
}
}
/* Pop the current state because it cannot handle the error token. */
if (yyssp == yyss)
YYABORT;
yydestruct ("Error: popping",
YY_ACCESSING_SYMBOL (yystate), yyvsp);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
}
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
/* Shift the error token. */
YY_SYMBOL_PRINT ("Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp);
yystate = yyn;
goto yynewstate;
/*-------------------------------------.
| yyacceptlab -- YYACCEPT comes here. |
`-------------------------------------*/
yyacceptlab:
yyresult = 0;
goto yyreturnlab;
/*-----------------------------------.
| yyabortlab -- YYABORT comes here. |
`-----------------------------------*/
yyabortlab:
yyresult = 1;
goto yyreturnlab;
/*-----------------------------------------------------------.
| yyexhaustedlab -- YYNOMEM (memory exhaustion) comes here. |
`-----------------------------------------------------------*/
yyexhaustedlab:
yyerror (YY_("memory exhausted"));
yyresult = 2;
goto yyreturnlab;
/*----------------------------------------------------------.
| yyreturnlab -- parsing is finished, clean up and return. |
`----------------------------------------------------------*/
yyreturnlab:
if (yychar != YYEMPTY)
{
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = YYTRANSLATE (yychar);
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval);
}
/* Do not reclaim the symbols of the rule whose action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
YY_ACCESSING_SYMBOL (+*yyssp), yyvsp);
YYPOPSTACK (1);
}
#ifndef yyoverflow
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
return yyresult;
}
#line 315 "getdate.y"
/* Month and day table. */
static TABLE const MonthDayTable[] = {
{ "january", tMONTH, 1 },
{ "february", tMONTH, 2 },
{ "march", tMONTH, 3 },
{ "april", tMONTH, 4 },
{ "may", tMONTH, 5 },
{ "june", tMONTH, 6 },
{ "july", tMONTH, 7 },
{ "august", tMONTH, 8 },
{ "september", tMONTH, 9 },
{ "sept", tMONTH, 9 },
{ "october", tMONTH, 10 },
{ "november", tMONTH, 11 },
{ "december", tMONTH, 12 },
{ "sunday", tDAY, 0 },
{ "monday", tDAY, 1 },
{ "tuesday", tDAY, 2 },
{ "tues", tDAY, 2 },
{ "wednesday", tDAY, 3 },
{ "wednes", tDAY, 3 },
{ "thursday", tDAY, 4 },
{ "thur", tDAY, 4 },
{ "thurs", tDAY, 4 },
{ "friday", tDAY, 5 },
{ "saturday", tDAY, 6 },
{ NULL }
};
/* Time units table. */
static TABLE const UnitsTable[] = {
{ "year", tMONTH_UNIT, 12 },
{ "month", tMONTH_UNIT, 1 },
{ "fortnight", tMINUTE_UNIT, 14 * 24 * 60 },
{ "week", tMINUTE_UNIT, 7 * 24 * 60 },
{ "day", tMINUTE_UNIT, 1 * 24 * 60 },
{ "hour", tMINUTE_UNIT, 60 },
{ "minute", tMINUTE_UNIT, 1 },
{ "min", tMINUTE_UNIT, 1 },
{ "second", tSEC_UNIT, 1 },
{ "sec", tSEC_UNIT, 1 },
{ NULL }
};
/* Assorted relative-time words. */
static TABLE const OtherTable[] = {
{ "tomorrow", tMINUTE_UNIT, 1 * 24 * 60 },
{ "yesterday", tMINUTE_UNIT, -1 * 24 * 60 },
{ "today", tMINUTE_UNIT, 0 },
{ "now", tMINUTE_UNIT, 0 },
{ "last", tUNUMBER, -1 },
{ "this", tUNUMBER, 0 },
{ "next", tUNUMBER, 2 },
{ "first", tUNUMBER, 1 },
/* { "second", tUNUMBER, 2 }, */
{ "third", tUNUMBER, 3 },
{ "fourth", tUNUMBER, 4 },
{ "fifth", tUNUMBER, 5 },
{ "sixth", tUNUMBER, 6 },
{ "seventh", tUNUMBER, 7 },
{ "eighth", tUNUMBER, 8 },
{ "ninth", tUNUMBER, 9 },
{ "tenth", tUNUMBER, 10 },
{ "eleventh", tUNUMBER, 11 },
{ "twelfth", tUNUMBER, 12 },
{ "ago", tAGO, 1 },
{ NULL }
};
/* The timezone table. */
/* Some of these are commented out because a time_t can't store a float. */
static TABLE const TimezoneTable[] = {
{ "gmt", tZONE, HOUR( 0) }, /* Greenwich Mean */
{ "ut", tZONE, HOUR( 0) }, /* Universal (Coordinated) */
{ "utc", tZONE, HOUR( 0) },
{ "wet", tZONE, HOUR( 0) }, /* Western European */
{ "bst", tDAYZONE, HOUR( 0) }, /* British Summer */
{ "wat", tZONE, HOUR( 1) }, /* West Africa */
{ "at", tZONE, HOUR( 2) }, /* Azores */
#if 0
/* For completeness. BST is also British Summer, and GST is
* also Guam Standard. */
{ "bst", tZONE, HOUR( 3) }, /* Brazil Standard */
{ "gst", tZONE, HOUR( 3) }, /* Greenland Standard */
#endif
#if 0
{ "nft", tZONE, HOUR(3.5) }, /* Newfoundland */
{ "nst", tZONE, HOUR(3.5) }, /* Newfoundland Standard */
{ "ndt", tDAYZONE, HOUR(3.5) }, /* Newfoundland Daylight */
#endif
{ "ast", tZONE, HOUR( 4) }, /* Atlantic Standard */
{ "adt", tDAYZONE, HOUR( 4) }, /* Atlantic Daylight */
{ "est", tZONE, HOUR( 5) }, /* Eastern Standard */
{ "edt", tDAYZONE, HOUR( 5) }, /* Eastern Daylight */
{ "cst", tZONE, HOUR( 6) }, /* Central Standard */
{ "cdt", tDAYZONE, HOUR( 6) }, /* Central Daylight */
{ "mst", tZONE, HOUR( 7) }, /* Mountain Standard */
{ "mdt", tDAYZONE, HOUR( 7) }, /* Mountain Daylight */
{ "pst", tZONE, HOUR( 8) }, /* Pacific Standard */
{ "pdt", tDAYZONE, HOUR( 8) }, /* Pacific Daylight */
{ "yst", tZONE, HOUR( 9) }, /* Yukon Standard */
{ "ydt", tDAYZONE, HOUR( 9) }, /* Yukon Daylight */
{ "hst", tZONE, HOUR(10) }, /* Hawaii Standard */
{ "hdt", tDAYZONE, HOUR(10) }, /* Hawaii Daylight */
{ "cat", tZONE, HOUR(10) }, /* Central Alaska */
{ "ahst", tZONE, HOUR(10) }, /* Alaska-Hawaii Standard */
{ "nt", tZONE, HOUR(11) }, /* Nome */
{ "idlw", tZONE, HOUR(12) }, /* International Date Line West */
{ "cet", tZONE, -HOUR(1) }, /* Central European */
{ "met", tZONE, -HOUR(1) }, /* Middle European */
{ "mewt", tZONE, -HOUR(1) }, /* Middle European Winter */
{ "mest", tDAYZONE, -HOUR(1) }, /* Middle European Summer */
{ "swt", tZONE, -HOUR(1) }, /* Swedish Winter */
{ "sst", tDAYZONE, -HOUR(1) }, /* Swedish Summer */
{ "fwt", tZONE, -HOUR(1) }, /* French Winter */
{ "fst", tDAYZONE, -HOUR(1) }, /* French Summer */
{ "eet", tZONE, -HOUR(2) }, /* Eastern Europe, USSR Zone 1 */
{ "bt", tZONE, -HOUR(3) }, /* Baghdad, USSR Zone 2 */
#if 0
{ "it", tZONE, -HOUR(3.5) },/* Iran */
#endif
{ "zp4", tZONE, -HOUR(4) }, /* USSR Zone 3 */
{ "zp5", tZONE, -HOUR(5) }, /* USSR Zone 4 */
#if 0
{ "ist", tZONE, -HOUR(5.5) },/* Indian Standard */
#endif
{ "zp6", tZONE, -HOUR(6) }, /* USSR Zone 5 */
#if 0
/* For completeness. NST is also Newfoundland Standard, and SST is
* also Swedish Summer. */
{ "nst", tZONE, -HOUR(6.5) },/* North Sumatra */
{ "sst", tZONE, -HOUR(7) }, /* South Sumatra, USSR Zone 6 */
#endif /* 0 */
{ "wast", tZONE, -HOUR(7) }, /* West Australian Standard */
{ "wadt", tDAYZONE, -HOUR(7) }, /* West Australian Daylight */
#if 0
{ "jt", tZONE, -HOUR(7.5) },/* Java (3pm in Cronusland!) */
#endif
{ "cct", tZONE, -HOUR(8) }, /* China Coast, USSR Zone 7 */
{ "jst", tZONE, -HOUR(9) }, /* Japan Standard, USSR Zone 8 */
#if 0
{ "cast", tZONE, -HOUR(9.5) },/* Central Australian Standard */
{ "cadt", tDAYZONE, -HOUR(9.5) },/* Central Australian Daylight */
#endif
{ "east", tZONE, -HOUR(10) }, /* Eastern Australian Standard */
{ "eadt", tDAYZONE, -HOUR(10) }, /* Eastern Australian Daylight */
{ "gst", tZONE, -HOUR(10) }, /* Guam Standard, USSR Zone 9 */
{ "nzt", tZONE, -HOUR(12) }, /* New Zealand */
{ "nzst", tZONE, -HOUR(12) }, /* New Zealand Standard */
{ "nzdt", tDAYZONE, -HOUR(12) }, /* New Zealand Daylight */
{ "idle", tZONE, -HOUR(12) }, /* International Date Line East */
{ NULL }
};
/* Military timezone table. */
static TABLE const MilitaryTable[] = {
{ "a", tZONE, HOUR( 1) },
{ "b", tZONE, HOUR( 2) },
{ "c", tZONE, HOUR( 3) },
{ "d", tZONE, HOUR( 4) },
{ "e", tZONE, HOUR( 5) },
{ "f", tZONE, HOUR( 6) },
{ "g", tZONE, HOUR( 7) },
{ "h", tZONE, HOUR( 8) },
{ "i", tZONE, HOUR( 9) },
{ "k", tZONE, HOUR( 10) },
{ "l", tZONE, HOUR( 11) },
{ "m", tZONE, HOUR( 12) },
{ "n", tZONE, HOUR(- 1) },
{ "o", tZONE, HOUR(- 2) },
{ "p", tZONE, HOUR(- 3) },
{ "q", tZONE, HOUR(- 4) },
{ "r", tZONE, HOUR(- 5) },
{ "s", tZONE, HOUR(- 6) },
{ "t", tZONE, HOUR(- 7) },
{ "u", tZONE, HOUR(- 8) },
{ "v", tZONE, HOUR(- 9) },
{ "w", tZONE, HOUR(-10) },
{ "x", tZONE, HOUR(-11) },
{ "y", tZONE, HOUR(-12) },
{ "z", tZONE, HOUR( 0) },
{ NULL }
};
/* ARGSUSED */
void
yyerror(const char *s)
{
return;
}
static time_t
ToSeconds(time_t Hours, time_t Minutes, time_t Seconds, MERIDIAN Meridian)
{
if (Minutes < 0 || Minutes > 59 || Seconds < 0 || Seconds > 59)
return -1;
switch (Meridian) {
case MER24:
if (Hours < 0 || Hours > 23)
return -1;
return (Hours * 60L + Minutes) * 60L + Seconds;
case MERam:
if (Hours < 1 || Hours > 12)
return -1;
if (Hours == 12)
Hours = 0;
return (Hours * 60L + Minutes) * 60L + Seconds;
case MERpm:
if (Hours < 1 || Hours > 12)
return -1;
if (Hours == 12)
Hours = 0;
return ((Hours + 12) * 60L + Minutes) * 60L + Seconds;
default:
abort ();
}
/* NOTREACHED */
}
/* Year is either
* A negative number, which means to use its absolute value (why?)
* A number from 0 to 99, which means a year from 1900 to 1999, or
* The actual year (>=100). */
static time_t
Convert(time_t Month, time_t Day, time_t Year, time_t Hours, time_t Minutes,
time_t Seconds, MERIDIAN Meridian, DSTMODE DSTmode)
{
static int DaysInMonth[12] = {
31, 0, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
};
struct tm tm;
time_t tod;
time_t Julian;
int i;
if (Year < 0)
Year = -Year;
if (Year < 69)
Year += 2000;
else if (Year < 100) {
Year += 1900;
if (Year < EPOCH)
Year += 100;
}
DaysInMonth[1] = Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0)
? 29 : 28;
/* 32-bit time_t cannot represent years past 2038 */
if (Year < EPOCH || (sizeof(time_t) == sizeof(int) && Year > 2038)
|| Month < 1 || Month > 12
/* Lint fluff: "conversion from long may lose accuracy" */
|| Day < 1 || Day > DaysInMonth[--Month])
return -1;
for (Julian = Day - 1, i = 0; i < Month; i++)
Julian += DaysInMonth[i];
for (i = EPOCH; i < Year; i++)
Julian += 365 + (i % 4 == 0);
Julian *= SECSPERDAY;
Julian += yyTimezone * 60L;
if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0)
return -1;
Julian += tod;
if (DSTmode == DSTon
|| (DSTmode == DSTmaybe && localtime_r(&Julian, &tm) && tm.tm_isdst))
Julian -= 60 * 60;
return Julian;
}
static time_t
DSTcorrect(time_t Start, time_t Future)
{
struct tm start_tm;
struct tm future_tm;
time_t StartDay;
time_t FutureDay;
if (!localtime_r(&Start, &start_tm) || !localtime_r(&Future, &future_tm))
return -1;
StartDay = (start_tm.tm_hour + 1) % 24;
FutureDay = (future_tm.tm_hour + 1) % 24;
return (Future - Start) + (StartDay - FutureDay) * 60L * 60L;
}
static time_t
RelativeDate(time_t Start, time_t DayOrdinal, time_t DayNumber)
{
struct tm tm;
time_t now;
now = Start;
if (!localtime_r(&now, &tm))
return -1;
now += SECSPERDAY * ((DayNumber - tm.tm_wday + 7) % 7);
now += 7 * SECSPERDAY * (DayOrdinal <= 0 ? DayOrdinal : DayOrdinal - 1);
return DSTcorrect(Start, now);
}
static time_t
RelativeMonth(time_t Start, time_t RelMonth)
{
struct tm tm;
time_t Month;
time_t Year;
if (RelMonth == 0)
return 0;
if (!localtime_r(&Start, &tm))
return -1;
Month = 12 * (tm.tm_year + 1900) + tm.tm_mon + RelMonth;
Year = Month / 12;
Month = Month % 12 + 1;
return DSTcorrect(Start,
Convert(Month, (time_t)tm.tm_mday, Year,
(time_t)tm.tm_hour, (time_t)tm.tm_min, (time_t)tm.tm_sec,
MER24, DSTmaybe));
}
static int
LookupWord(char *buff)
{
char *p;
char *q;
const TABLE *tp;
int i;
int abbrev;
int bufflen;
/* Make it lowercase. */
for (p = buff; *p; p++) {
if (isupper((unsigned char)*p))
*p = (char)tolower((unsigned char)*p);
}
if ((bufflen = (int)(p - buff)) == 0)
return '\0';
if (strcmp(buff, "am") == 0 || strcmp(buff, "a.m.") == 0) {
yylval.Meridian = MERam;
return tMERIDIAN;
}
if (strcmp(buff, "pm") == 0 || strcmp(buff, "p.m.") == 0) {
yylval.Meridian = MERpm;
return tMERIDIAN;
}
/* See if we have an abbreviation for a month. */
if (bufflen == 3)
abbrev = 1;
else if (bufflen == 4 && buff[3] == '.') {
abbrev = 1;
buff[bufflen = 3] = '\0';
}
else
abbrev = 0;
for (tp = MonthDayTable; tp->name; tp++) {
if (abbrev) {
if (strncmp(buff, tp->name, 3) == 0) {
yylval.Number = tp->value;
return tp->type;
}
}
else if (strcmp(buff, tp->name) == 0) {
yylval.Number = tp->value;
return tp->type;
}
}
for (tp = TimezoneTable; tp->name; tp++)
if (strcmp(buff, tp->name) == 0) {
yylval.Number = tp->value;
return tp->type;
}
if (strcmp(buff, "dst") == 0)
return tDST;
for (tp = UnitsTable; tp->name; tp++)
if (strcmp(buff, tp->name) == 0) {
yylval.Number = tp->value;
return tp->type;
}
/* Strip off any plural and try the units table again. */
i = bufflen - 1;
if (buff[i] == 's') {
buff[i] = '\0';
for (tp = UnitsTable; tp->name; tp++)
if (strcmp(buff, tp->name) == 0) {
yylval.Number = tp->value;
return tp->type;
}
buff[i] = 's'; /* Put back for "this" in OtherTable. */
}
for (tp = OtherTable; tp->name; tp++)
if (strcmp(buff, tp->name) == 0) {
yylval.Number = tp->value;
return tp->type;
}
/* Military timezones. */
if (buff[1] == '\0' && isalpha((unsigned char)*buff)) {
for (tp = MilitaryTable; tp->name; tp++)
if (strcmp(buff, tp->name) == 0) {
yylval.Number = tp->value;
return tp->type;
}
}
/* Drop out any periods and try the timezone table again. */
for (i = 0, p = q = buff; *q; q++)
if (*q != '.')
*p++ = *q;
else
i++;
*p = '\0';
if (i)
for (tp = TimezoneTable; tp->name; tp++)
if (strcmp(buff, tp->name) == 0) {
yylval.Number = tp->value;
return tp->type;
}
return tID;
}
static int
yylex(void)
{
char c;
char *p;
char buff[20];
int Count;
int sign;
for ( ; ; ) {
while (isspace((unsigned char)*yyInput))
yyInput++;
if (isdigit((unsigned char)(c = *yyInput)) || c == '-' || c == '+') {
if (c == '-' || c == '+') {
sign = c == '-' ? -1 : 1;
if (!isdigit((unsigned char)*++yyInput))
/* skip the '-' sign */
continue;
}
else
sign = 0;
for (yylval.Number = 0; isdigit((unsigned char)(c = *yyInput++)); )
yylval.Number = 10 * yylval.Number + c - '0';
yyInput--;
if (sign < 0)
yylval.Number = -yylval.Number;
return sign ? tSNUMBER : tUNUMBER;
}
if (isalpha((unsigned char)c)) {
for (p = buff; isalpha((unsigned char)(c = *yyInput++)) || c == '.'; )
if (p < &buff[sizeof buff - 1])
*p++ = c;
*p = '\0';
yyInput--;
return LookupWord(buff);
}
if (c != '(')
return *yyInput++;
Count = 0;
do {
c = *yyInput++;
if (c == '\0')
return c;
if (c == '(')
Count++;
else if (c == ')')
Count--;
} while (Count > 0);
}
}
#define TM_YEAR_ORIGIN 1900
/* Yield A - B, measured in seconds. */
static long
difftm(struct tm *a, struct tm *b)
{
int ay = a->tm_year + (TM_YEAR_ORIGIN - 1);
int by = b->tm_year + (TM_YEAR_ORIGIN - 1);
long days = (
/* difference in day of year */
a->tm_yday - b->tm_yday
/* + intervening leap days */
+ ((ay >> 2) - (by >> 2))
- (ay/100 - by/100)
+ ((ay/100 >> 2) - (by/100 >> 2))
/* + difference in years * 365 */
+ (long)(ay-by) * 365
);
return (60*(60*(24*days + (a->tm_hour - b->tm_hour))
+ (a->tm_min - b->tm_min))
+ (a->tm_sec - b->tm_sec));
}
time_t get_date(char *p);
time_t
get_date(char *p)
{
struct tm tm, gmt;
time_t Start;
time_t tod;
time_t now;
time_t tz;
yyInput = p;
(void)time (&now);
if (gmtime_r (&now, &gmt) == NULL)
return -1;
if (localtime_r (&now, &tm) == NULL)
return -1;
tz = difftm (&gmt, &tm) / 60;
if (tm.tm_isdst)
tz += 60;
yyYear = tm.tm_year + 1900;
yyMonth = tm.tm_mon + 1;
yyDay = tm.tm_mday;
yyTimezone = tz;
yyDSTmode = DSTmaybe;
yyHour = 0;
yyMinutes = 0;
yySeconds = 0;
yyMeridian = MER24;
yyRelSeconds = 0;
yyRelMonth = 0;
yyHaveDate = 0;
yyHaveDay = 0;
yyHaveRel = 0;
yyHaveTime = 0;
yyHaveZone = 0;
if (yyparse()
|| yyHaveTime > 1 || yyHaveZone > 1 || yyHaveDate > 1 || yyHaveDay > 1)
return -1;
if (yyHaveDate || yyHaveTime || yyHaveDay) {
Start = Convert(yyMonth, yyDay, yyYear, yyHour, yyMinutes, yySeconds,
yyMeridian, yyDSTmode);
if (Start < 0)
return -1;
}
else {
Start = now;
if (!yyHaveRel)
Start -= ((tm.tm_hour * 60L + tm.tm_min) * 60L) + tm.tm_sec;
}
Start += yyRelSeconds;
Start += RelativeMonth(Start, yyRelMonth);
if (yyHaveDay && !yyHaveDate) {
tod = RelativeDate(Start, yyDayOrdinal, yyDayNumber);
Start += tod;
}
/* Have to do *something* with a legitimate -1 so it's distinguishable
* from the error return value. (Alternately could set errno on error.) */
return Start == -1 ? 0 : Start;
}
#ifdef TEST
/* ARGSUSED */
int
main(int argc, char *argv[])
{
char buff[128];
time_t d;
(void)fputs("Enter date, or blank line to exit.\n\t> ", stdout);
(void)fflush(stdout);
while (fgets(buff, sizeof(buff), stdin) && buff[0]) {
d = get_date(buff);
if (d == -1)
(void)fputs("Bad format - couldn't convert.\n\t> ", stdout);
else
(void)printf("%s\t> ", ctime(&d));
(void)fflush(stdout);
}
return 0;
}
#endif /* TEST */
```
|
Chavis is a name. Notable uses of the name include:
People
Surname
Ben Chavis (educator), American educator and controversial education reform advocate
Benjamin Chavis (born 1948), African-American civil rights activist
Boozoo Chavis (1930–2001), American musician
Denis Chavis (fl. 1780s), Syrian priest and monk
Chris Chavis, American professional wrestler best known by the ring name Tatanka
George Washington Chavis (c. 1817 – after 1880), American free man of color who served in the Mississippi Legislature
John Chavis (–1838), American educator and minister
John Chavis (American football) (born 1956), American football coach
Kory Chavis (fl. 2005–2008), American wrestler also known by the ring name Rainman
Lonnie Chavis (born 2007), American actor and activist
Michael Chavis (born 1995), American baseball player
Given name
Chavis Carter (died 2012), American man who died in police custody, later ruled a suicide
Chavis Holmes (born 1986), American basketball player
Chavis Williams (born 1989), American gridiron football coach and former player
Middle name
Angel Joy Chavis Rocker (1966–2003), American politician and guidance counselor
Other uses
Boozoo Chavis, eponymous album by the above noted American musician
John Chavis Memorial Park, a public park in North Carolina named for the above noted American educator and minister
See also
|
```sqlpl
PRINT 'Inserting Application.Cities P'
GO
BEGIN TRANSACTION
DECLARE @CurrentDateTime datetime2(7) = '20200101'
DECLARE @EndOfTime datetime2(7) = '99991231 23:59:59.9999999'
INSERT [Application].Cities (CityID, CityName, StateProvinceID, [Location], LatestRecordedPopulation, LastEditedBy, ValidFrom, ValidTo)
VALUES (25899, 'Pa''auilo', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010cb3f62d292d0a3440319cc651d46b63c0, 595, 1, @CurrentDateTime, @EndOfTime)
, (26000, 'Palm Desert Country', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c5155fc3acbde4040fe501f3732145dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
COMMIT
GO
BEGIN TRANSACTION
DECLARE @CurrentDateTime datetime2(7) = '20200101'
DECLARE @EndOfTime datetime2(7) = '99991231 23:59:59.9999999'
INSERT [Application].Cities (CityID, CityName, StateProvinceID, [Location], LatestRecordedPopulation, LastEditedBy, ValidFrom, ValidTo)
VALUES (26001, 'Palm Harbor', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c67bd7383fc133c408d823babe0b054c0, 57439, 1, @CurrentDateTime, @EndOfTime)
, (26002, 'Palm River', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010ca2e991abfd463a408a8e8939ad7154c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26003, 'Palm Shores', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c5a86938f382f3c40bd7383fcc72954c0, 900, 1, @CurrentDateTime, @EndOfTime)
, (26004, 'Palm Springs', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c39ffc066caa23a40b6984462270654c0, 18928, 1, @CurrentDateTime, @EndOfTime)
, (26005, 'Palm Springs', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c88bf812447ea40401911d610e6225dc0, 44552, 1, @CurrentDateTime, @EndOfTime)
, (26006, 'Palm Valley', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c223e6656a5333a4078bc2429447058c0, 1304, 1, @CurrentDateTime, @EndOfTime)
, (26007, 'Palm Valley', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c1bb0f5566e2d3e40cc817923ce5854c0, 20019, 1, @CurrentDateTime, @EndOfTime)
, (26008, 'Palmarejo', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c940ca59b69113240d545651ed49450c0, 1090, 1, @CurrentDateTime, @EndOfTime)
, (26009, 'Palmas', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010ce9fb5f64b8fc3140195d39d6a08150c0, 2230, 1, @CurrentDateTime, @EndOfTime)
, (26010, 'Palmas del Mar', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c2e41a1f9f7143240fd4cbd6e117350c0, 2055, 1, @CurrentDateTime, @EndOfTime)
, (26011, 'Palmdale', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cedbce88601f23a409a21fa5a3c5454c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26012, 'Palmdale', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c205734e72a4a4140faaf181a74875dc0, 152750, 1, @CurrentDateTime, @EndOfTime)
, (26013, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c73fad577d95e324007fafa108a7150c0, 1032, 1, @CurrentDateTime, @EndOfTime)
, (26014, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cb4d771b2c3cc4e40e05630e09ba362c0, 5937, 1, @CurrentDateTime, @EndOfTime)
, (26015, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cd42afa4333374040ffcf61bebc2a58c0, 2000, 1, @CurrentDateTime, @EndOfTime)
, (26016, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010cd6e6ff5547144540909b864d091552c0, 12140, 1, @CurrentDateTime, @EndOfTime)
, (26017, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c9b13c5f539a84740b0e99cfa1b795ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26018, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ce71c3c139aba434084ec61d4da5956c0, 229, 1, @CurrentDateTime, @EndOfTime)
, (26019, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cfb422333729c44400a0f9a5d779058c0, 472, 1, @CurrentDateTime, @EndOfTime)
, (26020, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c36b45c91f3ac4140dab749fb556455c0, 672, 1, @CurrentDateTime, @EndOfTime)
, (26021, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cf10cbf40b55045402cea38236fa657c0, 165, 1, @CurrentDateTime, @EndOfTime)
, (26022, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c74efe192e3d04340749f77befa4858c0, 111, 1, @CurrentDateTime, @EndOfTime)
, (26023, 'Palmer', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010ca5434c2e6b384740ed0f94dbf6e555c0, 418, 1, @CurrentDateTime, @EndOfTime)
, (26024, 'Palmer Heights', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cfd6e151ffa5744401b9e5e29cbd052c0, 3762, 1, @CurrentDateTime, @EndOfTime)
, (26025, 'Palmer Lake', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c580fa9b3a48f4340aaf06778b33a5ac0, 2420, 1, @CurrentDateTime, @EndOfTime)
, (26026, 'Palmer Park', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c8175c185e1754340c3baf1eec83753c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26027, 'Palmers Crossing', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c2df246414b483f40d02e3ab4a35156c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26028, 'Palmersville', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c2478e860a23342404ef454e2952556c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26029, 'Palmerton', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c12a859fb96664440db9cef4c0de752c0, 5414, 1, @CurrentDateTime, @EndOfTime)
, (26030, 'Palmetto', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c32c1ba3b7c853b40a81721e1a0a454c0, 12606, 1, @CurrentDateTime, @EndOfTime)
, (26031, 'Palmetto', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cc82eac76a8b73e40a5958cad31fa56c0, 164, 1, @CurrentDateTime, @EndOfTime)
, (26032, 'Palmetto', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c87b3113e4ac240400167ce9fdb2a55c0, 4488, 1, @CurrentDateTime, @EndOfTime)
, (26033, 'Palmetto', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c23e1d638f6f34040fdf0982611bb54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26034, 'Palmetto Bay', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cba15c26a2c9f394028243e1cc91454c0, 23410, 1, @CurrentDateTime, @EndOfTime)
, (26035, 'Palmhurst', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cf29c88d926423a406013e3465b9458c0, 2607, 1, @CurrentDateTime, @EndOfTime)
, (26036, 'Palmview', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cafb0e07ec03b3a408e8de502bc9758c0, 5460, 1, @CurrentDateTime, @EndOfTime)
, (26037, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c8b112e89586c46400c1b0a44f45651c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26038, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c7a97416b34ee424049d4b084da9053c0, 104, 1, @CurrentDateTime, @EndOfTime)
, (26039, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c6d61cc4c1f0942403a98a839d45553c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26040, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c4e6cf420f3114440a77c6363b9ec5bc0, 491, 1, @CurrentDateTime, @EndOfTime)
, (26041, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c81e4428aa6b7434099918b7bbd7f56c0, 698, 1, @CurrentDateTime, @EndOfTime)
, (26042, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cea29cd412b5a4440fc9584facc1858c0, 545, 1, @CurrentDateTime, @EndOfTime)
, (26043, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c48e81d5d5b7045400ae12c80842556c0, 1781, 1, @CurrentDateTime, @EndOfTime)
, (26044, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c590119952f884540cd29b7a3ee4e53c0, 3536, 1, @CurrentDateTime, @EndOfTime)
, (26045, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cb35c363ae700444019d70979cec152c0, 7398, 1, @CurrentDateTime, @EndOfTime)
, (26046, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cf40f6ca68c274440270b04a6f82553c0, 7320, 1, @CurrentDateTime, @EndOfTime)
, (26047, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c0d535bea20f64040fa2e00e88bfb56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26048, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c748c75bba8e54340eafa4f487ce156c0, 3595, 1, @CurrentDateTime, @EndOfTime)
, (26049, 'Palmyra', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c1500e3193434434060b829d4098755c0, 930, 1, @CurrentDateTime, @EndOfTime)
, (26050, 'Palo', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c8200193a76084540719582c9e8f256c0, 1026, 1, @CurrentDateTime, @EndOfTime)
, (26051, 'Palo Alto', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c27929ed8f9574440e6c292bc040b53c0, 1032, 1, @CurrentDateTime, @EndOfTime)
, (26052, 'Palo Alto', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c99d29fa28fb842402dcc423b27895ec0, 64403, 1, @CurrentDateTime, @EndOfTime)
, (26053, 'Palo Cedro', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c8698a663294844408152feff498f5ec0, 1269, 1, @CurrentDateTime, @EndOfTime)
, (26054, 'Palo Pinto', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cd1d09a7a386240407ae7ab3f1d9358c0, 333, 1, @CurrentDateTime, @EndOfTime)
, (26055, 'Palo Seco', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010cd0550449e9013240d05be102f57b50c0, 1008, 1, @CurrentDateTime, @EndOfTime)
, (26056, 'Palo Verde', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c76e84f768eac40401f27f15e5a2b5cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26057, 'Palo Verde', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c6c3d433866b7404054ef5f0fdcae5cc0, 171, 1, @CurrentDateTime, @EndOfTime)
, (26058, 'Paloma Creek', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c9fa8119fe09c4040450a0a28f93b58c0, 2501, 1, @CurrentDateTime, @EndOfTime)
, (26059, 'Paloma Creek South', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c79fa5289fc9a4040fbe6feeaf13b58c0, 2753, 1, @CurrentDateTime, @EndOfTime)
, (26060, 'Palomar Park', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c760eaf35a5bd4240588c5f1dec905ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26061, 'Palomas', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010cb0027cb7790332405cf5ca06e3b750c0, 1936, 1, @CurrentDateTime, @EndOfTime)
, (26062, 'Palomas', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cd3cfe5176f904140ac5ed960bcfa59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26063, 'Palominas', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c1743de173c613f40fc9f0d0a94875bc0, 212, 1, @CurrentDateTime, @EndOfTime)
, (26064, 'Palos Heights', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cb72a89ec83d54440214b30e6f8f255c0, 12515, 1, @CurrentDateTime, @EndOfTime)
, (26065, 'Palos Hills', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c1e937b702dd944409938a8b349f455c0, 17484, 1, @CurrentDateTime, @EndOfTime)
, (26066, 'Palos Park', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c184d1d9a68d5444076b5262724f555c0, 4847, 1, @CurrentDateTime, @EndOfTime)
, (26067, 'Palos Verdes Estates', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c758ea61f79e64040e721aef7f6985dc0, 13438, 1, @CurrentDateTime, @EndOfTime)
, (26068, 'Palouse', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c77eb466980744740ea5e82aed8445dc0, 998, 1, @CurrentDateTime, @EndOfTime)
, (26069, 'Pamelia Center', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c49b3c3a9200546404082870ea6f952c0, 264, 1, @CurrentDateTime, @EndOfTime)
, (26070, 'Pamlico Beach', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c375d05e742b24140bc90b3556e2653c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26071, 'Pampa', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c5a07acc1a0c4414074f85a866e3d59c0, 17994, 1, @CurrentDateTime, @EndOfTime)
, (26072, 'Pamplico', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c8b7c4dc57cff4040ea7019dc7be453c0, 1226, 1, @CurrentDateTime, @EndOfTime)
, (26073, 'Pamplin', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c184cb2c4b9a14240d1967329aeab53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26074, 'Pamplin City', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cba13ecbfcea142403af361aca5ab53c0, 219, 1, @CurrentDateTime, @EndOfTime)
, (26075, 'Pana', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cdb72897ec8b1434031a2a30b204556c0, 5847, 1, @CurrentDateTime, @EndOfTime)
, (26076, 'Panaca', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010cbe6a65c22fe54240abfde77aec985cc0, 963, 1, @CurrentDateTime, @EndOfTime)
, (26077, 'Panacea', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c72fe81cd94093e40bf5a5ab2cf1855c0, 816, 1, @CurrentDateTime, @EndOfTime)
, (26078, 'Panama', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cd9bb0d12ec9541405d478c068fac57c0, 1413, 1, @CurrentDateTime, @EndOfTime)
, (26079, 'Panama', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c5c493ceaf9dc4440efb897ea38de57c0, 221, 1, @CurrentDateTime, @EndOfTime)
, (26080, 'Panama', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c572e0a719b0945406482d030ebde53c0, 479, 1, @CurrentDateTime, @EndOfTime)
, (26081, 'Panama', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c0424f5f9834c444052ae3abcb12058c0, 256, 1, @CurrentDateTime, @EndOfTime)
, (26082, 'Panama', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c35c4c25ac68343405215095c8d6156c0, 343, 1, @CurrentDateTime, @EndOfTime)
, (26083, 'Panama City', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cd4ae53f6a7283e404ae8d3cf406a55c0, 36484, 1, @CurrentDateTime, @EndOfTime)
, (26084, 'Panama City Beach', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c3ec10f18352d3e40b8f41e1d8d7355c0, 12018, 1, @CurrentDateTime, @EndOfTime)
, (26085, 'Panco', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c5e746847609e42405ecce03925e254c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26086, 'Pancoastburg', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c85d3ddd0efcf43406c04e275fdd054c0, 87, 1, @CurrentDateTime, @EndOfTime)
, (26087, 'Pandora', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010cf9bab14577f74240f389e18f47f25ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26088, 'Pandora', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cec1516dc0f403d40853309289e7558c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26089, 'Pandora', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c24ca83995b794440942ccce781fd54c0, 1153, 1, @CurrentDateTime, @EndOfTime)
, (26090, 'Pangburn', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cc0d254aa9fb64140dbde6e498ef556c0, 601, 1, @CurrentDateTime, @EndOfTime)
, (26091, 'Panguitch', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c018f030a50e94240f771d98de31b5cc0, 1520, 1, @CurrentDateTime, @EndOfTime)
, (26092, 'Panhandle', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cc92fcdbe3cac4140f01bba34595859c0, 2452, 1, @CurrentDateTime, @EndOfTime)
, (26093, 'Panola', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cb8aa9102b0794040208ebffe351156c0, 144, 1, @CurrentDateTime, @EndOfTime)
, (26094, 'Panola', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cea526d814e6444402529441b5b4156c0, 45, 1, @CurrentDateTime, @EndOfTime)
, (26095, 'Panora', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cfc54151a88d84440ac8f87be3b9757c0, 1124, 1, @CurrentDateTime, @EndOfTime)
, (26096, 'Panorama Heights', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c8ab03ca308e74140ad5681b545a85dc0, 41, 1, @CurrentDateTime, @EndOfTime)
, (26097, 'Panorama Heights', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c99be32ca8ee340401327f73b14735dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26098, 'Panorama Park', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010ca3c27d891dc744408efc6607019d56c0, 129, 1, @CurrentDateTime, @EndOfTime)
, (26099, 'Panorama Village', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c6b7418dd8b613e40c5f6a45d96df57c0, 2170, 1, @CurrentDateTime, @EndOfTime)
, (26100, 'Pantano', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cc27ef4f2e0ff3f406126400320a55bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26101, 'Pantego', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c39c9a0246e5b40409f05fc75024a58c0, 2394, 1, @CurrentDateTime, @EndOfTime)
, (26102, 'Pantego', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c130ce71a66cb4140879455c7602a53c0, 179, 1, @CurrentDateTime, @EndOfTime)
, (26103, 'Panther', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cd434de0cedd142405529876066ce55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26104, 'Panthersville', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c2b018cc289da4040c6579643661155c0, 9749, 1, @CurrentDateTime, @EndOfTime)
, (26105, 'Panton', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010cfc85c377071346408d5f7825c95552c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26106, 'Pantops', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c54e7acaaf203434079509a17719c53c0, 3027, 1, @CurrentDateTime, @EndOfTime)
, (26107, 'Paola', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c864e74023f494340ef7cf5a743b857c0, 5602, 1, @CurrentDateTime, @EndOfTime)
, (26108, 'Paoli', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c94d1127530474340ecc1a4f8f89d55c0, 3677, 1, @CurrentDateTime, @EndOfTime)
, (26109, 'Paoli', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cc8dc6bf761054440d8333ad67bde52c0, 5575, 1, @CurrentDateTime, @EndOfTime)
, (26110, 'Paoli', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cd90e1420546a41400f4ec53f1c5258c0, 610, 1, @CurrentDateTime, @EndOfTime)
, (26111, 'Paoli', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c8fd662015d4e4440d32a9f8a409e59c0, 34, 1, @CurrentDateTime, @EndOfTime)
, (26112, 'Paonia', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c8e39741f256f43404a2b195be3e55ac0, 1451, 1, @CurrentDateTime, @EndOfTime)
, (26113, 'Papaaloa', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010c18546529a3f933407fea69d10c6763c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26114, 'Papa''ikou', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010c673d21e0b5ca3340db62c8fb026363c0, 1314, 1, @CurrentDateTime, @EndOfTime)
, (26115, 'Papalote', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cd9c4138b292c3c40df89592f866658c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26116, 'Papillion', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c0c4b4dccc4934440eb692c06b40258c0, 18894, 1, @CurrentDateTime, @EndOfTime)
, (26117, 'Papineau', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cabe408be0e7c44403de477e4d9ed55c0, 171, 1, @CurrentDateTime, @EndOfTime)
, (26118, 'Parachute', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010ccde9b298d8b94340ec3f21f161035bc0, 1085, 1, @CurrentDateTime, @EndOfTime)
, (26119, 'Parade', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c82ad122c0e8346409358ada7b14659c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26120, 'Paradis', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c4662ddd330e13d4059f96530c69b56c0, 1298, 1, @CurrentDateTime, @EndOfTime)
, (26121, 'Paradise', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010cc2e50c20d7b14740a51a513555b35cc0, 163, 1, @CurrentDateTime, @EndOfTime)
, (26122, 'Paradise', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cbf8c182c8b8e434070c2ce5ec7ba58c0, 49, 1, @CurrentDateTime, @EndOfTime)
, (26123, 'Paradise', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c7fe1f0dd410144403579ca6a3a0853c0, 1129, 1, @CurrentDateTime, @EndOfTime)
, (26124, 'Paradise', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cb7d507ed30354f40ac110bc6920164c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26125, 'Paradise', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cb804e09f525047408390e2d2674255c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26126, 'Paradise', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ccaabcec53ae143406d93e57fcd675ec0, 26218, 1, @CurrentDateTime, @EndOfTime)
, (26127, 'Paradise', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c8a198634cfc844404e2844c0a1f55bc0, 904, 1, @CurrentDateTime, @EndOfTime)
, (26128, 'Paradise', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c3d450e1137934040de663bf0fb6b58c0, 441, 1, @CurrentDateTime, @EndOfTime)
, (26129, 'Paradise', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ca81ec429cebd424000ad54ab8aa65dc0, 153, 1, @CurrentDateTime, @EndOfTime)
, (26130, 'Paradise Beach', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cbebd6bd097663e4041988004eada55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26131, 'Paradise Hill', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c0d430de2a8d04140e5ec68dfd6c557c0, 85, 1, @CurrentDateTime, @EndOfTime)
, (26132, 'Paradise Hills', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c7851aa33ad9941403afd4575dfac5ac0, 4256, 1, @CurrentDateTime, @EndOfTime)
, (26133, 'Paradise Park', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cccc3f81f4f814240b6db89edc9825ec0, 389, 1, @CurrentDateTime, @EndOfTime)
, (26134, 'Paradise Valley', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c735188dbfcc34040cf6e884c54fc5bc0, 12820, 1, @CurrentDateTime, @EndOfTime)
, (26135, 'Paradise Valley', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010cea29cd412bbf44408553307436625dc0, 109, 1, @CurrentDateTime, @EndOfTime)
, (26136, 'Paradise Valley', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010ccbd0c2afa2684540901c44c67e995ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26137, 'Paragon', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010cda31bfe490b243401842cefbffa355c0, 659, 1, @CurrentDateTime, @EndOfTime)
, (26138, 'Paragonah', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010cec843c2762f14240df0bdd369d315cc0, 488, 1, @CurrentDateTime, @EndOfTime)
, (26139, 'Paragould', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c45c252b8790742406417563bd49f56c0, 26113, 1, @CurrentDateTime, @EndOfTime)
, (26140, 'Paraje', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c3126fdbd1487414008f7144a70de5ac0, 777, 1, @CurrentDateTime, @EndOfTime)
, (26141, 'Paraloma', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c244d727621e64040e9407b9a388157c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26142, 'Paramount', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ca80d98d1d9f14040482c73043a8a5dc0, 54098, 1, @CurrentDateTime, @EndOfTime)
, (26143, 'Paramount', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c3a54f8d802d7434062d7f6764b6c53c0, 2571, 1, @CurrentDateTime, @EndOfTime)
, (26144, 'Paramus', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c0dd649c7e67844400540cba9d38452c0, 26342, 1, @CurrentDateTime, @EndOfTime)
, (26145, 'Parcelas de Navarro', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c0ca2ff2fe83a3240ef1d3526448050c0, 1568, 1, @CurrentDateTime, @EndOfTime)
, (26146, 'Parcelas la Milagrosa', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010ceffe1df6e72b32404d350e50f58b50c0, 1290, 1, @CurrentDateTime, @EndOfTime)
, (26147, 'Parcelas Mandry', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c33953435bf143240759abb4c03a450c0, 571, 1, @CurrentDateTime, @EndOfTime)
, (26148, 'Parcelas Nuevas', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010cc0aecb95e6233240f6ab4a6c088b50c0, 1579, 1, @CurrentDateTime, @EndOfTime)
, (26149, 'Parcelas Peuelas', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c68fba1e3b4ff31407a92cf86d79550c0, 941, 1, @CurrentDateTime, @EndOfTime)
, (26150, 'Parcelas Viejas Borinquen', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c88c6c9b3812c3240b1c45e83998250c0, 677, 1, @CurrentDateTime, @EndOfTime)
, (26151, 'Parchment', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cbffc0406ff2945400be42373766455c0, 1804, 1, @CurrentDateTime, @EndOfTime)
, (26152, 'Pardee', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c4de438a6dd80424070d5d06119b054c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26153, 'Pardeesville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ca1606b5b39804440c72c7b12d8fd52c0, 572, 1, @CurrentDateTime, @EndOfTime)
, (26154, 'Pardeeville', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c10898c58d5c445407a7d9c1f355356c0, 2115, 1, @CurrentDateTime, @EndOfTime)
, (26155, 'Parhams', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cd1292389b9773f403317b83c56f256c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26156, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c9b5a11908a1e4540b1a140440fe556c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26157, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c6d86657d148045401f2e39ee14d452c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26158, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cf84f3750e01641404b091c646d5d56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26159, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cb16202c81a514540c2c826544b0356c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26160, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c674815c5ab334440377d87eccd2054c0, 732, 1, @CurrentDateTime, @EndOfTime)
, (26161, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010cd9a2bbda402146405af855140aa051c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26162, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cbd1358a599d440402fe065868de357c0, 25171, 1, @CurrentDateTime, @EndOfTime)
, (26163, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c2c27463b131d45403238efa4aad95bc0, 513, 1, @CurrentDateTime, @EndOfTime)
, (26164, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c88878b378dbd434096a652fd140057c0, 1220, 1, @CurrentDateTime, @EndOfTime)
, (26165, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c658a39083ace434070a1e1838dec55c0, 8837, 1, @CurrentDateTime, @EndOfTime)
, (26166, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c3f6f2a5261a5414037120df7b66e57c0, 3532, 1, @CurrentDateTime, @EndOfTime)
, (26167, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c259f0dafda1a43404074f7ef301055c0, 8553, 1, @CurrentDateTime, @EndOfTime)
, (26168, 'Paris', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c8ce8e802a826424036f0fed3e81456c0, 10156, 1, @CurrentDateTime, @EndOfTime)
, (26169, 'Paris Crossing', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010ce97fb9162d6a4340b6662b2f796955c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26170, 'Parish', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c84a2d4b9fdb345404dce9a690c0853c0, 450, 1, @CurrentDateTime, @EndOfTime)
, (26171, 'Parishville', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010ce0ba62467850464072b6ca5d15b452c0, 647, 1, @CurrentDateTime, @EndOfTime)
, (26172, 'Park', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c19c91ea1668e43409aa1a7b7f51659c0, 126, 1, @CurrentDateTime, @EndOfTime)
, (26173, 'Park City', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010ce97294cd66e64240c9b49146605458c0, 7297, 1, @CurrentDateTime, @EndOfTime)
, (26174, 'Park City', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c4831e5e8962c4540ca541c6297f855c0, 7570, 1, @CurrentDateTime, @EndOfTime)
, (26175, 'Park City', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c1b2fdd24068c424046274badf78255c0, 537, 1, @CurrentDateTime, @EndOfTime)
, (26176, 'Park City', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c37f11f1cfdd0464098e77750bf3a5bc0, 983, 1, @CurrentDateTime, @EndOfTime)
, (26177, 'Park City', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c42aa72eb7f8a4140f38299008da455c0, 2442, 1, @CurrentDateTime, @EndOfTime)
, (26178, 'Park City', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c46178a2ab2524440d5f2b9c9dedf5bc0, 7558, 1, @CurrentDateTime, @EndOfTime)
, (26179, 'Park Falls', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c7b38375c9af74640797d4166429c56c0, 2462, 1, @CurrentDateTime, @EndOfTime)
, (26180, 'Park Forest', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cc53df1f7e6be44408b8054d42aeb55c0, 21975, 1, @CurrentDateTime, @EndOfTime)
, (26181, 'Park Grove', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010cf8d96dbce00348408fbae70a809c5ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26182, 'Park Hill', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cb557ed42bdee4140c691e35be3be57c0, 3909, 1, @CurrentDateTime, @EndOfTime)
, (26183, 'Park Hills', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c11ea7d3e258943406f84a0fe0e2255c0, 2970, 1, @CurrentDateTime, @EndOfTime)
, (26184, 'Park Hills', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cc8d3f20357ed424068db1fde29a156c0, 8759, 1, @CurrentDateTime, @EndOfTime)
, (26185, 'Park Rapids', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010ccb3d6e090a764740865f45a1c0c357c0, 3709, 1, @CurrentDateTime, @EndOfTime)
, (26186, 'Park Ridge', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cb0d128136d014540f11879b4ccf555c0, 37480, 1, @CurrentDateTime, @EndOfTime)
, (26187, 'Park Ridge', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c6d4f351f7c4246405badb8ddf06256c0, 491, 1, @CurrentDateTime, @EndOfTime)
, (26188, 'Park Ridge', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c2af7a7f9cf844440d5c5b7c19a8252c0, 8645, 1, @CurrentDateTime, @EndOfTime)
, (26189, 'Park River', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010cc2453877053348401a93b4d16f6f58c0, 1403, 1, @CurrentDateTime, @EndOfTime)
, (26190, 'Park Valley', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c2b0d4636a1e84440c822f20211555cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26191, 'Park View', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c197b8a77dbd844403febd09feca256c0, 2389, 1, @CurrentDateTime, @EndOfTime)
, (26192, 'Parkdale', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c693288b4323d434096a828a872a156c0, 170, 1, @CurrentDateTime, @EndOfTime)
, (26193, 'Parkdale', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c4ed76e168ac24640346a190431665ec0, 311, 1, @CurrentDateTime, @EndOfTime)
, (26194, 'Parkdale', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cd50a2eb18d8f40405ded725bece256c0, 277, 1, @CurrentDateTime, @EndOfTime)
, (26195, 'Parkdale', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cbd0b4a873d224640da475d21629355c0, 704, 1, @CurrentDateTime, @EndOfTime)
, (26196, 'Parker', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c3d0b42791f40474011a0f023c81d5ec0, 154, 1, @CurrentDateTime, @EndOfTime)
, (26197, 'Parker', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c7b59c97d61c24340c4d78d2dba305ac0, 45297, 1, @CurrentDateTime, @EndOfTime)
, (26198, 'Parker', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c636f18bb33134140778c86e780925cc0, 3083, 1, @CurrentDateTime, @EndOfTime)
, (26199, 'Parker', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c985de62accfa4540e331a8db7ef05bc0, 305, 1, @CurrentDateTime, @EndOfTime)
, (26200, 'Parker', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cdc63e94317874040c6095dd3cd2758c0, 3811, 1, @CurrentDateTime, @EndOfTime)
, (26201, 'Parker', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c1e1f88878b213e4015e0bbcd9b6655c0, 4317, 1, @CurrentDateTime, @EndOfTime)
, (26202, 'Parker', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cdca96f4f468c4440eeda94e1aeeb53c0, 840, 1, @CurrentDateTime, @EndOfTime)
, (26203, 'Parker', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010ce69c8eb6e0b2454023ac7c85bb4858c0, 1022, 1, @CurrentDateTime, @EndOfTime)
, (26204, 'Parker', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c08beb387072a43400240ba7d7bbf57c0, 277, 1, @CurrentDateTime, @EndOfTime)
, (26205, 'Parker City', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c8fd25bf22e184440033e3f8c104d55c0, 1419, 1, @CurrentDateTime, @EndOfTime)
, (26206, 'Parker Ford', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c894b44ae8a19444042ddf6f35ce552c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26207, 'Parker Strip', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c5ab91798151c41404d6a6803b08c5cc0, 662, 1, @CurrentDateTime, @EndOfTime)
, (26208, 'Parkers', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c683d7c99284f4140bb86cf8c341457c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26209, 'Parkers Crossroads', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c88fab8910de54140cd2f945dfa1856c0, 330, 1, @CurrentDateTime, @EndOfTime)
, (26210, 'Parkers Crossroads', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c88fab8910de54140cd2f945dfa1856c0, 330, 1, @CurrentDateTime, @EndOfTime)
, (26211, 'Parkers Prairie', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c5a5a57169613474005d781180dd557c0, 1011, 1, @CurrentDateTime, @EndOfTime)
, (26212, 'Parkers Settlement', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010ccd74af93fa054340e6c4c320d5ed55c0, 711, 1, @CurrentDateTime, @EndOfTime)
, (26213, 'Parkersburg', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c4ccdd4daea494540d75a4ef85b3257c0, 1870, 1, @CurrentDateTime, @EndOfTime)
, (26214, 'Parkersburg', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cf3bc659824a24340cdb051d6ef6354c0, 31492, 1, @CurrentDateTime, @EndOfTime)
, (26215, 'Parkersburg', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c1f50919e7d4b43403c050a06a10356c0, 199, 1, @CurrentDateTime, @EndOfTime)
, (26216, 'Parkerton', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010c5bb05417f06c4540599aa5ae467e5ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26217, 'Parkertown', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c869d184806ac4440fe6b2f5860b254c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26218, 'Parkerville', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c29ce5147c7614340cf6e884c542a58c0, 59, 1, @CurrentDateTime, @EndOfTime)
, (26219, 'Parkesburg', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c07d38b35b7fa4340620be654d7fa52c0, 3593, 1, @CurrentDateTime, @EndOfTime)
, (26220, 'Parkfield', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c5057d2e528f3414088de3d9bb01b5ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26221, 'Parkin', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cbb2cc8c45da2414022a95b37e2a356c0, 1105, 1, @CurrentDateTime, @EndOfTime)
, (26222, 'Parkland', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010ce506e863e39347400be654d7c69b5ec0, 35803, 1, @CurrentDateTime, @EndOfTime)
, (26223, 'Parkland', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cce29125d614f3a409a94826e2f0f54c0, 23962, 1, @CurrentDateTime, @EndOfTime)
, (26224, 'Parkland', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c7af5f81c1b5347405140fa31e4ff56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26225, 'Parkline', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c7a19c5724bab4740430fc699f02b5dc0, 80, 1, @CurrentDateTime, @EndOfTime)
, (26226, 'Parkman', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010cec8e20f01b9146407e3100f9b75b51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26227, 'Parkman', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c1a06e22b70af4440a366fe872a4454c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26228, 'Parkman', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010cf0d12c1a7c7a4640cf09eb1049d55ac0, 151, 1, @CurrentDateTime, @EndOfTime)
, (26229, 'Parks', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cde37633d5aa141404272d7b7b8fc5bc0, 1188, 1, @CurrentDateTime, @EndOfTime)
, (26230, 'Parks', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cfede5cb2e0363e40d313967840f556c0, 653, 1, @CurrentDateTime, @EndOfTime)
, (26231, 'Parks', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010ce5b7e864a96641404f33ee177d7d57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26232, 'Parks', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cab083719550544408f7d7f39696e59c0, 23, 1, @CurrentDateTime, @EndOfTime)
, (26233, 'Parkside', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c4fcfbbb1a0ee43408fadc2c139d852c0, 2328, 1, @CurrentDateTime, @EndOfTime)
, (26234, 'Parksley', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cec4ca1f31ae44240f907db99d3e952c0, 842, 1, @CurrentDateTime, @EndOfTime)
, (26235, 'Parkston', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c7cd6355a0eb345402f08f6a9f47e58c0, 1508, 1, @CurrentDateTime, @EndOfTime)
, (26236, 'Parksville', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c23e87981a3e440400533a6600d8e54c0, 117, 1, @CurrentDateTime, @EndOfTime)
, (26237, 'Parkton', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c7ee5417a8a734140517d31a5bfc053c0, 436, 1, @CurrentDateTime, @EndOfTime)
, (26238, 'Parkville', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cb5e9be524cb04340d7a3703d8a2253c0, 30734, 1, @CurrentDateTime, @EndOfTime)
, (26239, 'Parkville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c2ae109bdfee3434051d3d3eca63d53c0, 6706, 1, @CurrentDateTime, @EndOfTime)
, (26240, 'Parkville', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c0510e3daf5984340cdbdd1d8a8ab57c0, 5554, 1, @CurrentDateTime, @EndOfTime)
, (26241, 'Parkway', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010ca6063f16472b4340f1283a3712be56c0, 439, 1, @CurrentDateTime, @EndOfTime)
, (26242, 'Parkway', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c01dbc1887d3f4340e8bf07af5d5d5ec0, 14670, 1, @CurrentDateTime, @EndOfTime)
, (26243, 'Parkway Village', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c14cc9882351b4340dbac5516606f55c0, 650, 1, @CurrentDateTime, @EndOfTime)
, (26244, 'Parlier', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c10559d7a494e4240dce51192bbe15dc0, 14494, 1, @CurrentDateTime, @EndOfTime)
, (26245, 'Parlin', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c28089b147f404340db29d98e82ae5ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26246, 'Parma', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c064a0a2c80e44540295371885d3c5dc0, 1983, 1, @CurrentDateTime, @EndOfTime)
, (26247, 'Parma', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010ca35de04d1221454063d2df4b612655c0, 769, 1, @CurrentDateTime, @EndOfTime)
, (26248, 'Parma', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cd6c8aeb48c4e424091216c1d417456c0, 713, 1, @CurrentDateTime, @EndOfTime)
, (26249, 'Parma', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cdda117a4cfb34440d1bf6e22446e54c0, 81601, 1, @CurrentDateTime, @EndOfTime)
, (26250, 'Parma Heights', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c7b5fa637edb1444003136ee89c7054c0, 20718, 1, @CurrentDateTime, @EndOfTime)
, (26251, 'Parmalee', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cb13ca308045f3b400b71f618f68d54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26252, 'Parmele', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c4bd0baa184e84140c388d8bb1a5453c0, 278, 1, @CurrentDateTime, @EndOfTime)
, (26253, 'Parmelee', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010cf0181efb59a94540d489bac5b24159c0, 562, 1, @CurrentDateTime, @EndOfTime)
, (26254, 'Parmerton', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c1a411999364a4140baff232e5bb359c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26255, 'Parnell', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c5f89f667f542414059b620a5a32659c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26256, 'Parnell', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c58456e3c8e1c4440a34918bc1e2e56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26257, 'Parnell', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c9548a29751384440a32bc71ae4a757c0, 191, 1, @CurrentDateTime, @EndOfTime)
, (26258, 'Parnell', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c1ebbb0daa1ca44403701e19e420057c0, 193, 1, @CurrentDateTime, @EndOfTime)
, (26259, 'Parole', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c09ccf918627d43405fbd40fff32153c0, 15922, 1, @CurrentDateTime, @EndOfTime)
, (26260, 'Paron', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c7b8db85bed624140d1e000448b3057c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26261, 'Parowan', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010cf0a2af20cdeb424078c608f2fd345cc0, 2790, 1, @CurrentDateTime, @EndOfTime)
, (26262, 'Parral', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c87ed388fd4474440c5a464decf5f54c0, 218, 1, @CurrentDateTime, @EndOfTime)
, (26263, 'Parran', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010ceb9cb00e91e643406d7d47437cb15dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26264, 'Parrish', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c785a2327b8b54640a1c50897c45956c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26265, 'Parrish', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c83bb58bd68963b403e4ee2bd349b54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26266, 'Parrish', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cd3ad8d6786dd4040dfbb726234d255c0, 982, 1, @CurrentDateTime, @EndOfTime)
, (26267, 'Parrott', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cd5986b2cbce43f40022b8716d92055c0, 158, 1, @CurrentDateTime, @EndOfTime)
, (26268, 'Parrott', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c9dcc8987419a42402577d844662754c0, 435, 1, @CurrentDateTime, @EndOfTime)
, (26269, 'Parrottsville', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010cfffdce9b2f014240b8585183e9c554c0, 263, 1, @CurrentDateTime, @EndOfTime)
, (26270, 'Parryville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c95e35f15b96844404df910540deb52c0, 525, 1, @CurrentDateTime, @EndOfTime)
, (26271, 'Parshall', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010c4a230b3d07fa47408940f50fa28859c0, 903, 1, @CurrentDateTime, @EndOfTime)
, (26272, 'Parshall', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c7b95c67949074440efbb3324388b5ac0, 47, 1, @CurrentDateTime, @EndOfTime)
, (26273, 'Parsippany', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cf5fd8aebce6d444031e24c5d439b52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26274, 'Parsons', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c57c96c3590ab4240fca0d398b5d057c0, 10500, 1, @CurrentDateTime, @EndOfTime)
, (26275, 'Parsons', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c1f9dbaf2598c43408bfed0cc93eb53c0, 1485, 1, @CurrentDateTime, @EndOfTime)
, (26276, 'Parsons', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c845e24592cd341409274cde41b0856c0, 2373, 1, @CurrentDateTime, @EndOfTime)
, (26277, 'Parsonsburg', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010caab0636d9d3143401d39776025de52c0, 339, 1, @CurrentDateTime, @EndOfTime)
, (26278, 'Parsonsfield', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010cfe3e88090fdd45402c465d6b6fbb51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26279, 'Parthenon', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c005c244800fa41404268f3ee7e4f57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26280, 'Partridge', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c61866b5acefb4240163e117aec8558c0, 248, 1, @CurrentDateTime, @EndOfTime)
, (26281, 'Pasadena', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c7ca98e0bbd8d43406b436a7f8c2453c0, 24287, 1, @CurrentDateTime, @EndOfTime)
, (26282, 'Pasadena', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cdb2b989dea124140f790f0bd3f895dc0, 137122, 1, @CurrentDateTime, @EndOfTime)
, (26283, 'Pasadena', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cf4fdd478e9b03d40bca47be761cd57c0, 149043, 1, @CurrentDateTime, @EndOfTime)
, (26284, 'Pasadena Hills', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c6ea46c91b4493c408b5bbba3358f54c0, 7570, 1, @CurrentDateTime, @EndOfTime)
, (26285, 'Pasadena Hills', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cfbbf3456ac5a4340e61192bbbe9256c0, 930, 1, @CurrentDateTime, @EndOfTime)
, (26286, 'Pasadena Park', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c2fa93528f55a4340c06a1b35159356c0, 470, 1, @CurrentDateTime, @EndOfTime)
, (26287, 'Pascagoula', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c8957fe21a25d3e40a11a8a96972356c0, 22392, 1, @CurrentDateTime, @EndOfTime)
, (26288, 'Pasco', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cada6464321533c4038aa89f4919554c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26289, 'Pasco', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c3826d588aa1e47405c261eab6fc65dc0, 59781, 1, @CurrentDateTime, @EndOfTime)
, (26290, 'Pascoag', [DataLoadSimulation].[GetStateProvinceID] ('RI'), 0xe6100000010cbe65f3dd52fa4440e9335651f2ec51c0, 4577, 1, @CurrentDateTime, @EndOfTime)
, (26291, 'Pascola', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cf360415024224240b8585183e97456c0, 108, 1, @CurrentDateTime, @EndOfTime)
, (26292, 'Paskenta', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cd6879a8d3af143406e6699eaeea25ec0, 112, 1, @CurrentDateTime, @EndOfTime)
, (26293, 'Pass Christian', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cab1f402bd5503e40a35698bed74f56c0, 4613, 1, @CurrentDateTime, @EndOfTime)
, (26294, 'Passadumkeag', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010ce9e1ba18b997464057a945e9772751c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26295, 'Passaic', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c4f68a384aa6d4440b31314f5388852c0, 69781, 1, @CurrentDateTime, @EndOfTime)
, (26296, 'Passaic', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c5b785e2a362943408dcf09464a9657c0, 34, 1, @CurrentDateTime, @EndOfTime)
, (26297, 'Passapatanzy', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c45bd3b8d0f2643404667f4fe1a5453c0, 1283, 1, @CurrentDateTime, @EndOfTime)
, (26298, 'Pastoria', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c2630421dfbdf42404b2e104e55e852c0, 649, 1, @CurrentDateTime, @EndOfTime)
, (26299, 'Pastos', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c177fdb13241e32406f980dd78f9050c0, 1514, 1, @CurrentDateTime, @EndOfTime)
, (26300, 'Pastura', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010caabfb91a34644140d5fe733d763c5ac0, 23, 1, @CurrentDateTime, @EndOfTime)
, (26301, 'Patagonia', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010caff435261f8a3f40cc762a8565b05bc0, 913, 1, @CurrentDateTime, @EndOfTime)
, (26302, 'Pataha', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c38d89b18923c47405cd8e43a57625dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26303, 'Pataskala', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c1a62067470ff4340f784364a28ab54c0, 14962, 1, @CurrentDateTime, @EndOfTime)
, (26304, 'Patch Grove', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c134b25975a784540b5d7cc6b36be56c0, 198, 1, @CurrentDateTime, @EndOfTime)
, (26305, 'Patchogue', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c05476ef20062444046f93889f74052c0, 11798, 1, @CurrentDateTime, @EndOfTime)
, (26306, 'Pateros', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c6e72535e86064840bf6b2b51d1f95dc0, 667, 1, @CurrentDateTime, @EndOfTime)
, (26307, 'Paterson', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c0d69f926f2f74640e4b9635694e65dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26308, 'Paterson', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c5c8d919158754440f58590f3fe8a52c0, 146199, 1, @CurrentDateTime, @EndOfTime)
, (26309, 'Patesville', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c9a40118b18e442401df9cd0e02ae55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26310, 'Patetown', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cb6dcf4c2f8ba41406f939bf2327b53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26311, 'Pathfork', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c26f5aff6c160424064c68091bcdd54c0, 379, 1, @CurrentDateTime, @EndOfTime)
, (26312, 'Patillas', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c8a2f2471a00132406a3af18b018150c0, 4333, 1, @CurrentDateTime, @EndOfTime)
, (26313, 'Patmos', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c0b010a3f82c140409f65cc133e6457c0, 64, 1, @CurrentDateTime, @EndOfTime)
, (26314, 'Patoka', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c3029e384ae6043407cdc12141a4656c0, 584, 1, @CurrentDateTime, @EndOfTime)
, (26315, 'Patoka', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010ceee2474618344340c7ce801f7ae555c0, 735, 1, @CurrentDateTime, @EndOfTime)
, (26316, 'Paton', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c95dcbccc0b15454069441fe2559057c0, 236, 1, @CurrentDateTime, @EndOfTime)
, (26317, 'Patricia', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cc7832d76fb4640404fd3c2c04e8159c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26318, 'Patricia', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c43644799c3a44540897d0228c66059c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26319, 'Patrick', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010c8b822a7f08c64340915fe40a14e55dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26320, 'Patrick', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c7764517d8c4941408518f906f00254c0, 351, 1, @CurrentDateTime, @EndOfTime)
, (26321, 'Patrick Springs', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c16bb229d26524240f663eeb57b0c54c0, 1845, 1, @CurrentDateTime, @EndOfTime)
, (26322, 'Patricksburg', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c7f94c78965a84340d384ed2763bd55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26323, 'Patriot', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c8b81bfa9596b4340b13385ceeb3455c0, 209, 1, @CurrentDateTime, @EndOfTime)
, (26324, 'Patroon', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c8ce4e1f3799f3f40c904fc1ac97e57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26325, 'Patsville', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010c2d2ba803b4e744409f9c572b49fd5cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26326, 'Patten', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010ce839d8518bff4640c3b645998d1c51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26327, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010cc96a042c03434640a7c98cb7956d5cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26328, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c2a255f645dbc4240bbeead484c485ec0, 20413, 1, @CurrentDateTime, @EndOfTime)
, (26329, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c39ca0bfa1c9842403f749c363ea356c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26330, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c2ce63114c1c144404a05ba9bcc6652c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26331, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c6eade584bff8424075183845ec6958c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26332, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010ca1f2afe595ac444061a351265a7857c0, 130, 1, @CurrentDateTime, @EndOfTime)
, (26333, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cc4b70b282f633f4075c2f0b6f78854c0, 730, 1, @CurrentDateTime, @EndOfTime)
, (26334, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010caafd8cc179b13d4004b05cca54d356c0, 6112, 1, @CurrentDateTime, @EndOfTime)
, (26335, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c8311a04bdda04140293dd34b0ccf56c0, 452, 1, @CurrentDateTime, @EndOfTime)
, (26336, 'Patterson', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c46f6f708eb63444075221c0ea6e154c0, 139, 1, @CurrentDateTime, @EndOfTime)
, (26337, 'Patterson Heights', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c9249fc40a85e4440cd977219121554c0, 636, 1, @CurrentDateTime, @EndOfTime)
, (26338, 'Patterson Springs', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cef1f0bd1219e4140b02ab121ee6054c0, 622, 1, @CurrentDateTime, @EndOfTime)
, (26339, 'Patterson Tract', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cbade910c9430424040081225ebd25dc0, 1752, 1, @CurrentDateTime, @EndOfTime)
, (26340, 'Pattison', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c1a30ed4042d33d408abc9b5dadff57c0, 472, 1, @CurrentDateTime, @EndOfTime)
, (26341, 'Pattison', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c3cb6af4d74e33f40abbaa2efc9b856c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26342, 'Patton', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c03bb50af4ac042403cdba337dc8056c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26343, 'Patton', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ce7ba3a110e3d43401dbe96a13bf055c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26344, 'Patton', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cc34c3679255144406d6468869ea953c0, 1769, 1, @CurrentDateTime, @EndOfTime)
, (26345, 'Patton Village', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c8fdfdbf467313e405bf745f8cdca57c0, 1557, 1, @CurrentDateTime, @EndOfTime)
, (26346, 'Pattonsburg', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c8962f206980944406b2c616d8c8657c0, 348, 1, @CurrentDateTime, @EndOfTime)
, (26347, 'Pattonville', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ca5338bab25ca40409a547e6319d957c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26348, 'Patzau', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c2c859be7e33e4740786572c5200e57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26349, 'Pauka''a', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010c877945a632c333400843780feb6263c0, 425, 1, @CurrentDateTime, @EndOfTime)
, (26350, 'Paul', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010caccf8bc9d14d454054138e6a22725cc0, 1169, 1, @CurrentDateTime, @EndOfTime)
, (26351, 'Paul', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c2ebeb21c324c4440fdd5880563f957c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26352, 'Paul Smiths', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c692f4734263846407324e18c2b9052c0, 671, 1, @CurrentDateTime, @EndOfTime)
, (26353, 'Paul Spur', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c3ee1911dc05d3f40c33a9f4b026f5bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26354, 'Paulden', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cefd0668b5a7141407566cc6ef71d5cc0, 5231, 1, @CurrentDateTime, @EndOfTime)
, (26355, 'Paulding', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c95f48b6dad914440d483dd0b272555c0, 3605, 1, @CurrentDateTime, @EndOfTime)
, (26356, 'Paulding', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010ca420d335ee03404072b2c34e674256c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26357, 'Paulette', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c7c35f6db8d7f404041481630811b56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26358, 'Paulina', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c442ad6ba1e114640095adcda9dfd5dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26359, 'Paulina', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cff733d76bc063e4005700e32a4ad56c0, 1178, 1, @CurrentDateTime, @EndOfTime)
, (26360, 'Pauline', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cc17dd3aa4c354440144a157b1e9658c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26361, 'Pauline', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010ccc0bb08f4e7b4340ec8909c531ec57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26362, 'Pauline', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c8d08c6c1a56a41401002f225d47754c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26363, 'Paullina', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c3a39e8b7547d4540f5bfb74409ec57c0, 1056, 1, @CurrentDateTime, @EndOfTime)
, (26364, 'Pauls Crossroads', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cdb83b5d6bcee4240f6b8ca6e413a53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26365, 'Pauls Valley', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c0f30c1513c5f41401be003edbe4f58c0, 6187, 1, @CurrentDateTime, @EndOfTime)
, (26366, 'Paulsboro', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c45f295404aea434014feb1b563cf52c0, 6097, 1, @CurrentDateTime, @EndOfTime)
, (26367, 'Paulton', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c7e7214200a4944405275d9f9c8e453c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26368, 'Pavilion', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c0a5520692670454011908a5a758153c0, 646, 1, @CurrentDateTime, @EndOfTime)
, (26369, 'Pavillion', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010cdc3c1faf519f4540857b65de2a2c5bc0, 231, 1, @CurrentDateTime, @EndOfTime)
, (26370, 'Pavo', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cb709f7cabcf53e401e4e05813aef54c0, 627, 1, @CurrentDateTime, @EndOfTime)
, (26371, 'Paw Creek', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c3673edb02ea34140db96b7d90e3c54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26372, 'Paw Paw', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c63b9008f03b842401fe6817e158754c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26373, 'Paw Paw', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c3981446ee11b45404f6a792f087955c0, 3534, 1, @CurrentDateTime, @EndOfTime)
, (26374, 'Paw Paw', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ce84b6f7f2ed844402cd8a1f5cb3e56c0, 870, 1, @CurrentDateTime, @EndOfTime)
, (26375, 'Paw Paw', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cc35d62d119c443404b732b84559d53c0, 508, 1, @CurrentDateTime, @EndOfTime)
, (26376, 'Paw Paw Lake', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c1fe16a532b1b45400025f4e9679155c0, 3511, 1, @CurrentDateTime, @EndOfTime)
, (26377, 'Pawcatuck', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010caf88ab144cb04440a89432045bf551c0, 5624, 1, @CurrentDateTime, @EndOfTime)
, (26378, 'Pawhuska', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cac2df936fd55424063806ada1a1758c0, 3584, 1, @CurrentDateTime, @EndOfTime)
, (26379, 'Pawlet', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010c861bf0f961ac4540707db328474b52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26380, 'Pawleys Island', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c7dedf4de73b740407d8dc987c5c753c0, 103, 1, @CurrentDateTime, @EndOfTime)
, (26381, 'Pawling', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c914d4dddf0c74440bc8b4171916652c0, 2347, 1, @CurrentDateTime, @EndOfTime)
, (26382, 'Pawnee', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cabb7616fbdcb4340edfc91d8246556c0, 2739, 1, @CurrentDateTime, @EndOfTime)
, (26383, 'Pawnee', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c96c2406ebf2b42400f533724f93458c0, 2196, 1, @CurrentDateTime, @EndOfTime)
, (26384, 'Pawnee', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c39fe55911ba73c4095229e912d8058c0, 166, 1, @CurrentDateTime, @EndOfTime)
, (26385, 'Pawnee City', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c41086ddedd0d4440fd344987e20958c0, 878, 1, @CurrentDateTime, @EndOfTime)
, (26386, 'Pawnee Rock', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cbe350b0ff5214340416c448bc7be58c0, 252, 1, @CurrentDateTime, @EndOfTime)
, (26387, 'Pawnee Station', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c9360600c9bd94240b742588da5b257c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26388, 'Pawtucket', [DataLoadSimulation].[GetStateProvinceID] ('RI'), 0xe6100000010c57d11f9a79f044404a7952cb7bd851c0, 71148, 1, @CurrentDateTime, @EndOfTime)
, (26389, 'Pax', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010ca6666a6d75f44240539044d4e95054c0, 167, 1, @CurrentDateTime, @EndOfTime)
, (26390, 'Paxico', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cfd76c883e3884340b1c79f03a60a58c0, 221, 1, @CurrentDateTime, @EndOfTime)
, (26391, 'Paxson', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cd25c5d047c8b4f402614c7269e3362c0, 40, 1, @CurrentDateTime, @EndOfTime)
, (26392, 'Paxtang', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cfeee1d3526214440c2df8a1f3e3553c0, 1561, 1, @CurrentDateTime, @EndOfTime)
, (26393, 'Paxton', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c52b81e85eb3a4440b1097ab9190656c0, 4473, 1, @CurrentDateTime, @EndOfTime)
, (26394, 'Paxton', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010ca9baec7ce48f44402c76453acd5659c0, 523, 1, @CurrentDateTime, @EndOfTime)
, (26395, 'Paxton', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c1f80796ddb044440f5fcc45cad3f5ec0, 14, 1, @CurrentDateTime, @EndOfTime)
, (26396, 'Paxton', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c9a3ee02648fb3e4024534f30ad9355c0, 644, 1, @CurrentDateTime, @EndOfTime)
, (26397, 'Paxton', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c63b5f97fd5274540fb3c467966fb51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26398, 'Paxtonia', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c9dd497a59d284440a95b87b4d73253c0, 5412, 1, @CurrentDateTime, @EndOfTime)
, (26399, 'Paxtonville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cec91bc299b624440202a8d98594553c0, 265, 1, @CurrentDateTime, @EndOfTime)
, (26400, 'Paxville', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cfe97101890de404017ceda12de1654c0, 185, 1, @CurrentDateTime, @EndOfTime)
, (26401, 'Payette', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c6a34b918030a4640cc1cdce7c23b5dc0, 7433, 1, @CurrentDateTime, @EndOfTime)
, (26402, 'Payne', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c21e868554b8c47401805c1e35b2657c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26403, 'Payne', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cc01ab1602c6d40404a7f2f8507ec54c0, 218, 1, @CurrentDateTime, @EndOfTime)
, (26404, 'Payne', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c5dead621ed894440071104238a2e55c0, 1194, 1, @CurrentDateTime, @EndOfTime)
, (26405, 'Payne Gap', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cfd76c883e39342409f5fef5932aa54c0, 329, 1, @CurrentDateTime, @EndOfTime)
, (26406, 'Payne Springs', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c98d5e0229c234040bde6b056480458c0, 767, 1, @CurrentDateTime, @EndOfTime)
, (26407, 'Paynes', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c9eea909be1f540408a3f8a3a738456c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26408, 'Paynes Creek', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c8577b988ef2a4440e62acc318f7a5ec0, 57, 1, @CurrentDateTime, @EndOfTime)
, (26409, 'Paynesville', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cb1d52f229ba1434055617d4da0b956c0, 77, 1, @CurrentDateTime, @EndOfTime)
, (26410, 'Paynesville', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c56bec2ddb4b04640573c9a8f90ad57c0, 2432, 1, @CurrentDateTime, @EndOfTime)
, (26411, 'Payson', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c6dd1b82693e8434004cb6ceb82cf56c0, 1026, 1, @CurrentDateTime, @EndOfTime)
, (26412, 'Payson', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c05d781188d1d414031d12005cfd45bc0, 15301, 1, @CurrentDateTime, @EndOfTime)
, (26413, 'Payson', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c3bbdf7dcae054440482d3993dbee5bc0, 18294, 1, @CurrentDateTime, @EndOfTime)
, (26414, 'Paytes', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cab49a6f9191d4340c7e182224c7553c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26415, 'Pe Ell', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c46a68d3402494740ae5ba90c08d35ec0, 632, 1, @CurrentDateTime, @EndOfTime)
, (26416, 'Pea Ridge', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cb64d4c721b3a42405e7704815f8757c0, 4794, 1, @CurrentDateTime, @EndOfTime)
, (26417, 'Peabody', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c23ff27dab015434040868e1dd44658c0, 1210, 1, @CurrentDateTime, @EndOfTime)
, (26418, 'Peabody', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c1578825891434540bba4202e6fbb51c0, 51251, 1, @CurrentDateTime, @EndOfTime)
, (26419, 'Peace Dale', [DataLoadSimulation].[GetStateProvinceID] ('RI'), 0xe6100000010c704b9af518b9444008aa46af06e051c0, 8487, 1, @CurrentDateTime, @EndOfTime)
, (26420, 'Peaceful Village', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c95b0db0cdc3b4340aca690d0bba256c0, 9, 1, @CurrentDateTime, @EndOfTime)
, (26421, 'Peach Creek', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c37a6272cf1ef4240de8321bc077f54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26422, 'Peach Orchard', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cc166ca98cc2e42407d8a2d4ec67b56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26423, 'Peach Orchard', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c9099b0a2ab234240bc96ebc86caa56c0, 135, 1, @CurrentDateTime, @EndOfTime)
, (26424, 'Peach Springs', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c94f1947abbc34140826f9a3e3b5b5cc0, 1090, 1, @CurrentDateTime, @EndOfTime)
, (26425, 'Peacham', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010cfe8980f91a2a464077bf65a9d00a52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26426, 'Peachburg', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010ca030cd19f6144040679df17df16755c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26427, 'Peachland', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c39f06ab9337f41403f4459aeed1054c0, 437, 1, @CurrentDateTime, @EndOfTime)
, (26428, 'Peachtree City', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c578e35c8c9b24040e3eab6fa202655c0, 34364, 1, @CurrentDateTime, @EndOfTime)
, (26429, 'Peacock', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c5d7f5c2c5697404017e3b2c08d1959c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26430, 'Peak', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c07c5a05dcf1e4140b0822914b35454c0, 64, 1, @CurrentDateTime, @EndOfTime)
, (26431, 'Peaks Mill', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c2ebeb21c32264340bf2a172aff3355c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26432, 'Peapack and Gladstone', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cefdbb529c35b444075c8cd7003aa52c0, 2582, 1, @CurrentDateTime, @EndOfTime)
, (26433, 'Pearblossom', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c0c207c28d14041408ff2ddf7397a5dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26434, 'Pearce', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c158db5bfb3e73f40b0952b1785745bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26435, 'Pearcy', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cbddb61b8df364140bdf671d98d5257c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26436, 'Pearisburg', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c8ce3761ecba94240d00e13680b2f54c0, 2786, 1, @CurrentDateTime, @EndOfTime)
, (26437, 'Pearl', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c7ce2efcd2523404084239232738856c0, 25092, 1, @CurrentDateTime, @EndOfTime)
, (26438, 'Pearl', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cde9623bfd9ba43402ea97fb50fa856c0, 138, 1, @CurrentDateTime, @EndOfTime)
, (26439, 'Pearl', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010cf67d384888ed4540e378f4754f145dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26440, 'Pearl Beach', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c19b1aab93750454062ce7d8340a654c0, 2829, 1, @CurrentDateTime, @EndOfTime)
, (26441, 'Pearl City', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c0b5d8940f5214540b381cf6adc7456c0, 838, 1, @CurrentDateTime, @EndOfTime)
, (26442, 'Pearl City', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010cefbf3a336667354073d53c47a4be63c0, 47698, 1, @CurrentDateTime, @EndOfTime)
, (26443, 'Pearl River', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c643f8ba5486440404fc9def7944e56c0, 3601, 1, @CurrentDateTime, @EndOfTime)
, (26444, 'Pearl River', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cc06e224443603e408afac9bde56f56c0, 2506, 1, @CurrentDateTime, @EndOfTime)
, (26445, 'Pearl River', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c17b83cd68c87444031564046658152c0, 15876, 1, @CurrentDateTime, @EndOfTime)
, (26446, 'Pearland', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c301e94e645903d40c606c1994ed257c0, 91252, 1, @CurrentDateTime, @EndOfTime)
, (26447, 'Pearlington', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c01351026203f3e409e78735d1d6756c0, 1332, 1, @CurrentDateTime, @EndOfTime)
, (26448, 'Pearsall', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cd130c6d166e43c409cc24a0515c658c0, 9146, 1, @CurrentDateTime, @EndOfTime)
, (26449, 'Pearson', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c1ffc1fbb66b84140e72e2efa2f0857c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26450, 'Pearson', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c04bae5d99bae46409934fc5d0e4156c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26451, 'Pearson', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010ca92bb7a6d4894140a286f0e1423c58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26452, 'Pearson', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010ccceb8843364c3f408e8c7a2d8db654c0, 2117, 1, @CurrentDateTime, @EndOfTime)
, (26453, 'Pease', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c3e74e6c358d94640bc6b1a25796957c0, 242, 1, @CurrentDateTime, @EndOfTime)
, (26454, 'Pebble Beach', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c250dc9247e484240840ab375957c5ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26455, 'Pecan Acres', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cadc32c0f2d7c4040e67f4d31625e58c0, 4099, 1, @CurrentDateTime, @EndOfTime)
, (26456, 'Pecan Gap', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cf612be52f1b74040b29135342ff657c0, 203, 1, @CurrentDateTime, @EndOfTime)
, (26457, 'Pecan Grove', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ca191beff45a03d4094cf3ccad2ee57c0, 15963, 1, @CurrentDateTime, @EndOfTime)
, (26458, 'Pecan Hill', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c23ccfe8a463e4040032e7e094b3258c0, 626, 1, @CurrentDateTime, @EndOfTime)
, (26459, 'Pecan Park', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cb0cff7ae9c224040e82e89b322eb5ac0, 75, 1, @CurrentDateTime, @EndOfTime)
, (26460, 'Pecan Plantation', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c896e0734222e4040e1719bba3c6b58c0, 5294, 1, @CurrentDateTime, @EndOfTime)
, (26461, 'Pecatonica', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ccb7a7b212e2845405a09826cfe5656c0, 2195, 1, @CurrentDateTime, @EndOfTime)
, (26462, 'Peck', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cfe8980f91aa145402a0b15d250b454c0, 632, 1, @CurrentDateTime, @EndOfTime)
, (26463, 'Peck', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010ce26c848fd23c474086b5e7e8271b5dc0, 197, 1, @CurrentDateTime, @EndOfTime)
, (26464, 'Peck', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cfc1bb4571fbd424070f6bd3cd35758c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26465, 'Peckham', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cb8682ac709724240ff205d2fc74c58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26466, 'Pecktonville', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cb1a8e38cbcd54340460147a7d38253c0, 167, 1, @CurrentDateTime, @EndOfTime)
, (26467, 'Peconic', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010caac42bff10a943402d1098e2858959c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26468, 'Peconic', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c7e9873df20864440533b681ba41d52c0, 683, 1, @CurrentDateTime, @EndOfTime)
, (26469, 'Pecos', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c83e1b77c7fc941408071ba76336b5ac0, 1392, 1, @CurrentDateTime, @EndOfTime)
, (26470, 'Pecos', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ca812affc436c3f40743ba01191df59c0, 8780, 1, @CurrentDateTime, @EndOfTime)
, (26471, 'Peculiar', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c0b07e7f80d5c4340cc8af216599d57c0, 4608, 1, @CurrentDateTime, @EndOfTime)
, (26472, 'Peden', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ca3ec889eef79404055dd239b2b6258c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26473, 'Pedernal', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c898ff40e5c514140f5e857842c695ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26474, 'Pedley', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ce0466f5dd6fc4040f49084d8745e5dc0, 12672, 1, @CurrentDateTime, @EndOfTime)
, (26475, 'Pedricktown', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c9babe63922e14340f0164850fcd952c0, 524, 1, @CurrentDateTime, @EndOfTime)
, (26476, 'Pedro', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010ce461461dc2354640d98d88739e8759c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26477, 'Pedro Bay', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cb4d771b2c3e44d40c3071b43654363c0, 42, 1, @CurrentDateTime, @EndOfTime)
, (26478, 'Pee Dee', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cd6de4cf15d1a414025f6bf127ee253c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26479, 'Peebles', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c165e937f77794340525f3bbdf7d954c0, 1782, 1, @CurrentDateTime, @EndOfTime)
, (26480, 'Peekskill', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c72a202cc21a5444030eeab17e87a52c0, 23583, 1, @CurrentDateTime, @EndOfTime)
, (26481, 'Peeksville', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c479e35898b0c47402dedd45ceea156c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26482, 'Peel', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c6975cd3f55374240697407b1333157c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26483, 'Peeples Valley', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cc97553ca6b2241404facf82b892e5cc0, 428, 1, @CurrentDateTime, @EndOfTime)
, (26484, 'Peerless', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010cdf2527c9296448403481221631755ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26485, 'Peetz', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c3b6178db3b7b44401032daf431c759c0, 238, 1, @CurrentDateTime, @EndOfTime)
, (26486, 'Peever', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010cf3d8e08e81c54640f80ec86f1b3d58c0, 168, 1, @CurrentDateTime, @EndOfTime)
, (26487, 'Peggs', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c46ebc02bdd0a42409db9ad4be2c757c0, 813, 1, @CurrentDateTime, @EndOfTime)
, (26488, 'Pegram', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c9c64f558441245409fc1f05b3ec85bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26489, 'Pegram', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c573ecbf3e00c42403cb5447845c355c0, 2093, 1, @CurrentDateTime, @EndOfTime)
, (26490, 'Pekin', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010ccb9761ed39e54740539f9a81009558c0, 70, 1, @CurrentDateTime, @EndOfTime)
, (26491, 'Pekin', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c059b841ca5484440ee7a698a006956c0, 34094, 1, @CurrentDateTime, @EndOfTime)
, (26492, 'Pekin', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c1dffaac88d9545402f4be07ba4b853c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26493, 'Pelahatchie', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c2e5393e00d284040c993ff24197356c0, 1334, 1, @CurrentDateTime, @EndOfTime)
, (26494, 'Peletier', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c2fa699ee755d4140e33f93b3664553c0, 644, 1, @CurrentDateTime, @EndOfTime)
, (26495, 'Pelham', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c6ab125f5af203f409040cddab70955c0, 3898, 1, @CurrentDateTime, @EndOfTime)
, (26496, 'Pelham', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cd4febdca90a44040b66801dad6b355c0, 21352, 1, @CurrentDateTime, @EndOfTime)
, (26497, 'Pelham', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c4dd9e90775744440d324c2d0b47352c0, 6910, 1, @CurrentDateTime, @EndOfTime)
, (26498, 'Pelham', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010c68e6c935055e45404ef5bfb7c4d451c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26499, 'Pelham', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c7c4853985232454075c12a28d61952c0, NULL, 1, @CurrentDateTime, @EndOfTime)
COMMIT
GO
BEGIN TRANSACTION
DECLARE @CurrentDateTime datetime2(7) = '20200101'
DECLARE @EndOfTime datetime2(7) = '99991231 23:59:59.9999999'
INSERT [Application].Cities
(CityID, CityName, StateProvinceID, [Location], LatestRecordedPopulation, LastEditedBy, ValidFrom, ValidTo)
VALUES
(26500, 'Pelham', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c9874ef3c4c414240bef49b2e30de53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26501, 'Pelham', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c7cd45fafb0a7414094bb74385f7855c0, 403, 1, @CurrentDateTime, @EndOfTime)
, (26502, 'Pelham Manor', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c578a2eb99b724440f814a529a77352c0, 5486, 1, @CurrentDateTime, @EndOfTime)
, (26503, 'Pelican', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c3134e895fcfa4c40e17a14ae470761c0, 88, 1, @CurrentDateTime, @EndOfTime)
, (26504, 'Pelican', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c0262122ee4e13f402f22403c816557c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26505, 'Pelican Bay', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ca479b6fde1754040b46cf7bc2c6158c0, 1547, 1, @CurrentDateTime, @EndOfTime)
, (26506, 'Pelican Lake', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cfefb427eecbf4640665c829dac4a56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26507, 'Pelican Rapids', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c1667b1b90f49474018f9abb6510558c0, 2464, 1, @CurrentDateTime, @EndOfTime)
, (26508, 'Pelion', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cf34c79beb0e140406174d42cab4f54c0, 674, 1, @CurrentDateTime, @EndOfTime)
, (26509, 'Pelkie', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c47fafe1719684740e78d93c2bc2856c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26510, 'Pell City', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cc6f6ff1609cb40401ff065474f9255c0, 12695, 1, @CurrentDateTime, @EndOfTime)
, (26511, 'Pell Lake', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c11acaa97df4445408231c797751656c0, 3722, 1, @CurrentDateTime, @EndOfTime)
, (26512, 'Pella', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cc40204183bb44440be61eccea43a57c0, 10352, 1, @CurrentDateTime, @EndOfTime)
, (26513, 'Pella', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cd7bd1589095f4640283971836b3356c0, 185, 1, @CurrentDateTime, @EndOfTime)
, (26514, 'Pelland', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c7d714e91e84248404ea21463cf6457c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26515, 'Pellettown', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cb4e55c8aab944440b988efc42cab52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26516, 'Pellston', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c554b3acac1c64640370994032c3255c0, 822, 1, @CurrentDateTime, @EndOfTime)
, (26517, 'Pellville', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c048d3e8b4ae0424098e0d40712b455c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26518, 'Pelzer', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c8a80f91a385241409b5203722e9d54c0, 89, 1, @CurrentDateTime, @EndOfTime)
, (26519, 'Pemberton', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c2fb8301c19014640a8a1574d217257c0, 247, 1, @CurrentDateTime, @EndOfTime)
, (26520, 'Pemberton', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c2e69d6636cfc43401470743ab5ab52c0, 1409, 1, @CurrentDateTime, @EndOfTime)
, (26521, 'Pemberton Heights', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010ca85725ec36fb43406d01a1f570ab52c0, 2423, 1, @CurrentDateTime, @EndOfTime)
, (26522, 'Pemberville', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c477364e597b444407689eaad81dd54c0, 1371, 1, @CurrentDateTime, @EndOfTime)
, (26523, 'Pemberwick', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010c16461f9848834440a50007a3486a52c0, 3680, 1, @CurrentDateTime, @EndOfTime)
, (26524, 'Pembina', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010c514f7a3ab27b48404714a463984f58c0, 592, 1, @CurrentDateTime, @EndOfTime)
, (26525, 'Pembine', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cfbd1cb834fd14640ab178dc66bff55c0, 193, 1, @CurrentDateTime, @EndOfTime)
, (26526, 'Pembroke', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cacfa01b452c93b40a945e977867354c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26527, 'Pembroke', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c9d86037c127a4640e8f0b50c5dca50c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26528, 'Pembroke', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010cec3b759b2609454099abd50dcab351c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26529, 'Pembroke', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010cab1cffaac8924540ab4a11cf48dd51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26530, 'Pembroke', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c0ba9ec05b07f4540a0072ddad29b53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26531, 'Pembroke', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010ce36a099ee7a842404ac9bc9fe42854c0, 1128, 1, @CurrentDateTime, @EndOfTime)
, (26532, 'Pembroke', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010ccbd765f84f634240672cf587c1d655c0, 869, 1, @CurrentDateTime, @EndOfTime)
, (26533, 'Pembroke', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cc23a44920f5741400240ba7d7bcc53c0, 2973, 1, @CurrentDateTime, @EndOfTime)
, (26534, 'Pembroke', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cca95308969114040b3507cc6cf6754c0, 2196, 1, @CurrentDateTime, @EndOfTime)
, (26535, 'Pembroke Park', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c9d3a45fde4fc394053b70e692f0b54c0, 6102, 1, @CurrentDateTime, @EndOfTime)
, (26536, 'Pembroke Pines', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010ccc988235ce003a4052d7dafb540e54c0, 154750, 1, @CurrentDateTime, @EndOfTime)
, (26537, 'Pen Argyl', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cb7e974c5316f4440cb4a935250d052c0, 3595, 1, @CurrentDateTime, @EndOfTime)
, (26538, 'Pen Mar', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c0938842a35dc43409373620f6d6053c0, 929, 1, @CurrentDateTime, @EndOfTime)
, (26539, 'Pea Blanca', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c3ef4932012c941401e59541fa3955ac0, 709, 1, @CurrentDateTime, @EndOfTime)
, (26540, 'Pea Pobre', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010cba5d79da2b3732402c335b689d7450c0, 991, 1, @CurrentDateTime, @EndOfTime)
, (26541, 'Penalosa', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c9a0af148bcdb4240819ebc7e779458c0, 17, 1, @CurrentDateTime, @EndOfTime)
, (26542, 'Peasco', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c7054b82fb1154240fdf50a0bee6b5ac0, 589, 1, @CurrentDateTime, @EndOfTime)
, (26543, 'Penbrook', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ce6b2d1393f2344407d451218463653c0, 3008, 1, @CurrentDateTime, @EndOfTime)
, (26544, 'Pence', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cb7faa01d26354740936d8555619156c0, 131, 1, @CurrentDateTime, @EndOfTime)
, (26545, 'Pencer', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010ca8d7778f7d59484059ebd511d1e857c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26546, 'Pender', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c1357df0a726f4340f853e3a59b5753c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26547, 'Pender', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c5c2dc1f39c0e45405ad427b9432d58c0, 1002, 1, @CurrentDateTime, @EndOfTime)
, (26548, 'Pendergrass', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cca970634c714414020da7d7d63eb54c0, 422, 1, @CurrentDateTime, @EndOfTime)
, (26549, 'Pendleton', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cf8f3b74e6d534140382c0dfc28b254c0, 2964, 1, @CurrentDateTime, @EndOfTime)
, (26550, 'Pendleton', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c8e739b70afff434081107f03c96f55c0, 4253, 1, @CurrentDateTime, @EndOfTime)
, (26551, 'Pendleton', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c0206eee5e36943408e0244c10ccf56c0, 43, 1, @CurrentDateTime, @EndOfTime)
, (26552, 'Pendleton', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c13ebf93f2c3b43409847a3a76d5355c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26553, 'Pendleton', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cb9d8fedf228b4540b44cd07094ae53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26554, 'Pendleton', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010cc7bab88d06d64640f20e4b5e78b25dc0, 16612, 1, @CurrentDateTime, @EndOfTime)
, (26555, 'Pendleton Center', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cbd8fa339b28d4540357d76c075b153c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26556, 'Pendroy', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c3574fdcc6a0948407246de8321135cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26557, 'Penelope', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cfed7b96933dc3f40c6d8ae754e3b58c0, 198, 1, @CurrentDateTime, @EndOfTime)
, (26558, 'Penermon', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c904b1c792065424008c72c7b127556c0, 64, 1, @CurrentDateTime, @EndOfTime)
, (26559, 'Penfield', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ce65196c6d426444000265fbf96fc55c0, 193, 1, @CurrentDateTime, @EndOfTime)
, (26560, 'Penfield', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cb70a62a06bd54040c0c293275acb54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26561, 'Penfield', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c3beb0901af9045402025766d6f5e53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26562, 'Penfield', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cba5adda0ac9a4440b6b0b849d6a453c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26563, 'Pengilly', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c00b3316596aa4740d3e759ff9d4c57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26564, 'Penhook', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cfe9b1727be7d424057c7968a32e853c0, 801, 1, @CurrentDateTime, @EndOfTime)
, (26565, 'Peninsula', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cc470bf8dde9e44406bcc35165e6354c0, 565, 1, @CurrentDateTime, @EndOfTime)
, (26566, 'Penitas', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ce30973710a3b3a40c34bcba3769c58c0, 4403, 1, @CurrentDateTime, @EndOfTime)
, (26567, 'Penn', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cf8e0b54b1b2a4440674d87a908e953c0, 475, 1, @CurrentDateTime, @EndOfTime)
, (26568, 'Penn Hills', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ce63686a52640444056d22fb6b5f553c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26569, 'Penn Lake Park', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c0e338f577b8e4440ac0ac33698f152c0, 308, 1, @CurrentDateTime, @EndOfTime)
, (26570, 'Penn Yan', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cb26bd67498544540d1089167724353c0, 5159, 1, @CurrentDateTime, @EndOfTime)
, (26571, 'Penndel', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c825c3d82761344406e9e8fd7a8ba52c0, 2328, 1, @CurrentDateTime, @EndOfTime)
, (26572, 'Penney Farms', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c625e91a9ccfa3d4036012b2cdd7354c0, 749, 1, @CurrentDateTime, @EndOfTime)
, (26573, 'Penngrove', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c72535e865a2643404f519a72aaaa5ec0, 2522, 1, @CurrentDateTime, @EndOfTime)
, (26574, 'Pennington', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c1a42846ee5bd474060a527d1b79e57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26575, 'Pennington', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c17afc3e2811a40407db7d49c970356c0, 221, 1, @CurrentDateTime, @EndOfTime)
, (26576, 'Pennington', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c1e98ed540a2a4440f296ab1f9bb252c0, 2585, 1, @CurrentDateTime, @EndOfTime)
, (26577, 'Pennington Gap', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cfc8804f8136142401d76df31bcc154c0, 1781, 1, @CurrentDateTime, @EndOfTime)
, (26578, 'Pennock', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c76bdd98b0d934640633953324acb57c0, 508, 1, @CurrentDateTime, @EndOfTime)
, (26579, 'Penns Creek', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c113ae8120e6e44407e5ea747894353c0, 715, 1, @CurrentDateTime, @EndOfTime)
, (26580, 'Penns Grove', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c1504ea2862dd43407819b446f3dd52c0, 5147, 1, @CurrentDateTime, @EndOfTime)
, (26581, 'Penns Neck', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010ca87e94c7892a44404a134abac1a852c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26582, 'Pennsauken', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c13549e8a65fa4340fc72c174b5c352c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26583, 'Pennsboro', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c9c9f877f7da443403e44fef4fa3d54c0, 1171, 1, @CurrentDateTime, @EndOfTime)
, (26584, 'Pennsburg', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c847703160a32444006c36ff97edf52c0, 3843, 1, @CurrentDateTime, @EndOfTime)
, (26585, 'Pennsbury Village', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c79ce71c9cc364440eac6606a700654c0, 661, 1, @CurrentDateTime, @EndOfTime)
, (26586, 'Pennsuco', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c7cce82f524e539405d56bcec321854c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26587, 'Pennsville', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c2fd8b221a4d343402ec088c70fe152c0, 11888, 1, @CurrentDateTime, @EndOfTime)
, (26588, 'Pennville', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c36f22f38393f44406c770fd07d4955c0, 701, 1, @CurrentDateTime, @EndOfTime)
, (26589, 'Penobscot', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010cff69b466753b46409f19694e832d51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26590, 'Penrose', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c1180c9d7af9841406de690d442c356c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26591, 'Penrose', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010ccdfd7a2a4cd3444055ad3bcc4d135cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26592, 'Penrose', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010cfb253d676636434006e56cf074415ac0, 3582, 1, @CurrentDateTime, @EndOfTime)
, (26593, 'Penryn', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c20dbe852126d4340cd4b0f54d74a5ec0, 831, 1, @CurrentDateTime, @EndOfTime)
, (26594, 'Penryn', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c384fd081401a4440ebf5381d921753c0, 1024, 1, @CurrentDateTime, @EndOfTime)
, (26595, 'Pensacola', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c7128a5a3c13a42406950ff1ce0c957c0, 125, 1, @CurrentDateTime, @EndOfTime)
, (26596, 'Pensacola', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cae8218e8da6b3e40f86008efe1cd55c0, 51923, 1, @CurrentDateTime, @EndOfTime)
, (26597, 'Pensaukee', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c1409a69a59694640b423303171fa55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26598, 'Penton', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c450ce0d2d66e414095b31c8de89156c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26599, 'Penton', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c9f437463d580404009055bdbca5d55c0, 201, 1, @CurrentDateTime, @EndOfTime)
, (26600, 'Pentress', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c75fe92f9ecda43405500e720430a54c0, 175, 1, @CurrentDateTime, @EndOfTime)
, (26601, 'Pentwater', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c1d16b4da0de4454025cff57db89b55c0, 857, 1, @CurrentDateTime, @EndOfTime)
, (26602, 'Peuelas', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c1c1252126d0e32409bdfd5172eae50c0, 5859, 1, @CurrentDateTime, @EndOfTime)
, (26603, 'Penwell', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c376c00db66bd3f40b39b74b6dba559c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26604, 'Penzance', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cfe3a81fae07341407821c2644f905bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26605, 'Peoa', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010cafaaa80bc25c4440b1581effe0d55bc0, 253, 1, @CurrentDateTime, @EndOfTime)
, (26606, 'Peoria', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010ce44e441a703946405a16a7b544cd5ec0, 94, 1, @CurrentDateTime, @EndOfTime)
, (26607, 'Peoria', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c6b878d5aab754240b3d5661566ac57c0, 132, 1, @CurrentDateTime, @EndOfTime)
, (26608, 'Peoria', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c365a0ef450ca4040c3521333310f5cc0, 154065, 1, @CurrentDateTime, @EndOfTime)
, (26609, 'Peoria', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c59bb928900d7434067ea1ad24d075ac0, 163, 1, @CurrentDateTime, @EndOfTime)
, (26610, 'Peoria', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cc33e4ba13d243f4037cfc76b94ab56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26611, 'Peoria', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cb2d6506a2f28444038fd344987dc54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26612, 'Peoria', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c79eb5795d84a4340bb0cffe986c957c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26613, 'Peoria', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c6f74df7bc95844407b7203f4b16556c0, 115007, 1, @CurrentDateTime, @EndOfTime)
, (26614, 'Peoria Heights', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c75502e32a65f44404cfa7b29bc6456c0, 6156, 1, @CurrentDateTime, @EndOfTime)
, (26615, 'Peosta', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c1378cce5ab394540397018166db656c0, 1377, 1, @CurrentDateTime, @EndOfTime)
, (26616, 'Peotone', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010caf754e5887aa4440b495f2b542f255c0, 4142, 1, @CurrentDateTime, @EndOfTime)
, (26617, 'Pep', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cc66cc9aa08eb40406323b5f578d559c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26618, 'Pepe''ekeo', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010c94c151f2ead4334068cbb914576363c0, 1789, 1, @CurrentDateTime, @EndOfTime)
, (26619, 'Pepin', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c003ca242753846405ddc4603780957c0, 837, 1, @CurrentDateTime, @EndOfTime)
, (26620, 'Pepper Pike', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c882cd2c43bbd4440fa8beabead5d54c0, 5979, 1, @CurrentDateTime, @EndOfTime)
, (26621, 'Pepperell', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010cff147df43c55454015fa0560a8e551c0, 2504, 1, @CurrentDateTime, @EndOfTime)
, (26622, 'Pequannock', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c25a886a2e5794440975643e21e9352c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26623, 'Pequop', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010c21ff7167cb9b444024b2b4f8b9a55cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26624, 'Pequot Lakes', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c94ebb7c02f4d4740f6a402ddcd9357c0, 2162, 1, @CurrentDateTime, @EndOfTime)
, (26625, 'Peralta', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cf46679c3226b41404b8fa67a32ac5ac0, 3660, 1, @CurrentDateTime, @EndOfTime)
, (26626, 'Percilla', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c396ba631108c3f40a11749168bd957c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26627, 'Percival', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c546529a3db5f44404427953a12f457c0, 87, 1, @CurrentDateTime, @EndOfTime)
, (26628, 'Percle', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c7fd93d7958de3d4091ae3ec3c0c056c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26629, 'Percy', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c242fc61bf48d4040daf687774ab856c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26630, 'Percy', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c28ad09b31a024340a0cf36ed986756c0, 970, 1, @CurrentDateTime, @EndOfTime)
, (26631, 'Perdido', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cc3482f6af7013f4070b0373124e855c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26632, 'Perdido Beach', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c1deca8c53b573e408927bb9951e055c0, 581, 1, @CurrentDateTime, @EndOfTime)
, (26633, 'Perez', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ce655421c90d6444031b19eff43505ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26634, 'Perezville', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cdfe23cf779393a40dc69c6fda29958c0, 5376, 1, @CurrentDateTime, @EndOfTime)
, (26635, 'Perham', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c81c17f040f6c4740e47a25da9f0c51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26636, 'Perham', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c72cdd36f154c474094861a85a4e457c0, 2985, 1, @CurrentDateTime, @EndOfTime)
, (26637, 'Peridot', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cd7a4db12b9a74040dbd6bbe4249d5bc0, 1350, 1, @CurrentDateTime, @EndOfTime)
, (26638, 'Perintown', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cbbe4c97f929143403cf9f4d8160f55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26639, 'Perkasie', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c6745d4449f2f4440be141e34bbd252c0, 8511, 1, @CurrentDateTime, @EndOfTime)
, (26640, 'Perkins', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c75c35b8c26fd4640c4a8b57a98c455c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26641, 'Perkins', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c786b4f7fac643e4090c591625b5a57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26642, 'Perkins', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c396d7cdc6d744040eae34636fc7c54c0, 91, 1, @CurrentDateTime, @EndOfTime)
, (26643, 'Perkins', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c954b56922bfd4140952505d9ac4358c0, 2831, 1, @CurrentDateTime, @EndOfTime)
, (26644, 'Perkinston', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c719417f439c83e408cbb41b4d64856c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26645, 'Perkinsville', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cbe9fbf756a73414093ffc9df3d0c5cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26646, 'Perkinsville', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010c160445e2d4af45402819ef7de02052c0, 130, 1, @CurrentDateTime, @EndOfTime)
, (26647, 'Perla', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cc714072ba92e41408102942b613157c0, 241, 1, @CurrentDateTime, @EndOfTime)
, (26648, 'Perley', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010ca378f06ec09647405407d4f68a3358c0, 92, 1, @CurrentDateTime, @EndOfTime)
, (26649, 'Perma', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010ccd0d3cad91ae4740572767286ea55cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26650, 'Pernell', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cb05028a25f4841408539b1ef296258c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26651, 'Pernitas Point', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c8fd662015d0f3c40fbdd85f7e67958c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26652, 'Perote', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cdb5a159799f23f400c361a65226d55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26653, 'Perrin', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c73254c625a84404051c653ea6d8458c0, 398, 1, @CurrentDateTime, @EndOfTime)
, (26654, 'Perrin', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c9b8246fafee744407832eebcc3cf59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26655, 'Perrine', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c3621ad31e89a394065506d70a21654c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26656, 'Perrinton', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cdeb06d516697454087a3ab74772b55c0, 406, 1, @CurrentDateTime, @EndOfTime)
, (26657, 'Perris', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c26be7f9829e440405ad3612aa24e5dc0, 68386, 1, @CurrentDateTime, @EndOfTime)
, (26658, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cdfd293358f254240abf55addf55358c0, 5126, 1, @CurrentDateTime, @EndOfTime)
, (26659, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010cbd1b0b0a83bb44408bb9b59613025cc0, 4512, 1, @CurrentDateTime, @EndOfTime)
, (26660, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c9c84775ecf7c4640cce37a25dac450c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26661, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c7c73c982d3f23d40708ad8710d0a57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26662, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c24dc1ac7fe6a3f4026c396c3933a58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26663, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cb7f2edb83ce4434015cf34bcb4af56c0, 397, 1, @CurrentDateTime, @EndOfTime)
, (26664, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cc48c3a843bd0404002deb87bef5354c0, 233, 1, @CurrentDateTime, @EndOfTime)
, (26665, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010ce89bd95317864140f4acffced13257c0, 270, 1, @CurrentDateTime, @EndOfTime)
, (26666, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c0ae7093a101e3e404035b9733ce554c0, 7017, 1, @CurrentDateTime, @EndOfTime)
, (26667, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cdae78c83a63a404035ca9f14d2ee54c0, 13839, 1, @CurrentDateTime, @EndOfTime)
, (26668, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c8c45782057eb4440e3923e08dc8657c0, 7702, 1, @CurrentDateTime, @EndOfTime)
, (26669, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c7a3881e9b4894340f5300ff42bd957c0, 929, 1, @CurrentDateTime, @EndOfTime)
, (26670, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c474e70fb2fb7434026659cd035eb56c0, 693, 1, @CurrentDateTime, @EndOfTime)
, (26671, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cff78af5a995b4540d746e11f5b8053c0, 3673, 1, @CurrentDateTime, @EndOfTime)
, (26672, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c3a1f9e25c8694540efb490db0a0e55c0, 2188, 1, @CurrentDateTime, @EndOfTime)
, (26673, 'Perry', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010ca066ed5b52e14440037d7d08054954c0, 1663, 1, @CurrentDateTime, @EndOfTime)
, (26674, 'Perry Hall', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010ca1cbe550d0b44340a8514832ab1d53c0, 28474, 1, @CurrentDateTime, @EndOfTime)
, (26675, 'Perry Heights', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c432b4190cd6544407f2f85074d5e54c0, 8441, 1, @CurrentDateTime, @EndOfTime)
, (26676, 'Perrydale', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010ca11ffc7a74854640d13bbab65cd05ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26677, 'Perryman', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c1c19f55a1abc434013f648de140d53c0, 2342, 1, @CurrentDateTime, @EndOfTime)
, (26678, 'Perryopolis', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ca653686a230b44403c3e6bc809f053c0, 1784, 1, @CurrentDateTime, @EndOfTime)
, (26679, 'Perrysburg', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c5c001aa54bc74440471d1d5723e854c0, 20623, 1, @CurrentDateTime, @EndOfTime)
, (26680, 'Perrysburg', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c6fe29af16c3a45403d4dc17520c053c0, 401, 1, @CurrentDateTime, @EndOfTime)
, (26681, 'Perrysville', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010cd190f12895064440f3b116fabbdb55c0, 456, 1, @CurrentDateTime, @EndOfTime)
, (26682, 'Perrysville', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cb4160be82a544440c663ab70f09354c0, 735, 1, @CurrentDateTime, @EndOfTime)
, (26683, 'Perrysville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ca79ab404744444407cae00f0190254c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26684, 'Perryton', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c2d70c339343342408ee733a05e3359c0, 8802, 1, @CurrentDateTime, @EndOfTime)
, (26685, 'Perrytown', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c5101e61027d940404c20802f606257c0, 272, 1, @CurrentDateTime, @EndOfTime)
, (26686, 'Perryville', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010ce0f599b33ed34240ef46d565e73c55c0, 751, 1, @CurrentDateTime, @EndOfTime)
, (26687, 'Perryville', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cf7d7e19e9d80414064c4aae65e3357c0, 1460, 1, @CurrentDateTime, @EndOfTime)
, (26688, 'Perryville', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cabc88dc7b1c74340861c5bcf900453c0, 4361, 1, @CurrentDateTime, @EndOfTime)
, (26689, 'Perryville', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c210d5d3fb3dc4240262bd0381e7756c0, 8225, 1, @CurrentDateTime, @EndOfTime)
, (26690, 'Perryville', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c19068772fdf44b405dd60e9039e563c0, 113, 1, @CurrentDateTime, @EndOfTime)
, (26691, 'Perryville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c6a7a9adda4414440c125b6717ae153c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26692, 'Perryville', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c092f66f09c5a40407f07509d580057c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26693, 'Perryville', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010ca94a00a370cf414014927131ab0256c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26694, 'Persia', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c5f2fa8ca52314540e84f1bd5e9bb53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26695, 'Persia', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010ca53f451f3dca4440314a2b195be457c0, 319, 1, @CurrentDateTime, @EndOfTime)
, (26696, 'Perth', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010cd489bac5b25b4840ea6976934edd58c0, 9, 1, @CurrentDateTime, @EndOfTime)
, (26697, 'Perth', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c45a165dd3f824540a6d01ed46a8c52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26698, 'Perth', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c9a50d20d5e96424039752f41576058c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26699, 'Perth Amboy', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c65822beadd404440f6a56db2fc9052c0, 50814, 1, @CurrentDateTime, @EndOfTime)
, (26700, 'Peru', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cbad8b452084a46403d5c1723b76152c0, 1591, 1, @CurrentDateTime, @EndOfTime)
, (26701, 'Peru', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c3ae6e1a9eca94440b5842117414856c0, 10295, 1, @CurrentDateTime, @EndOfTime)
, (26702, 'Peru', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c02ccc694598b4240b6476fb80f0658c0, 139, 1, @CurrentDateTime, @EndOfTime)
, (26703, 'Peru', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010cf844e8b17760444000f4458c688455c0, 11417, 1, @CurrentDateTime, @EndOfTime)
, (26704, 'Peru', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c22e5828eb13c4440d14a1064f3ee57c0, 865, 1, @CurrentDateTime, @EndOfTime)
, (26705, 'Peru', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010ced9925016a9d4540dbd2b4d5763952c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26706, 'Peru', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c120654eef4484640e415889e944f56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26707, 'Peru', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010cdd2e8f90dc404640d86fdc18f19951c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26708, 'Peru', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010cc641f80615384540c691bd94f04252c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26709, 'Pescadero', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c9b66cb03a2a04240831a193f68985ec0, 643, 1, @CurrentDateTime, @EndOfTime)
, (26710, 'Peshastin', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c658632f90bc94740f887d283a7265ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26711, 'Peshawbestown', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c29159ee1178346408808a469756655c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26712, 'Peshtigo', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cedf5ee8ff78646408953f712f4ef55c0, 3502, 1, @CurrentDateTime, @EndOfTime)
, (26713, 'Pesotum', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ca7f402a216f54340b3f2261a7f1156c0, 551, 1, @CurrentDateTime, @EndOfTime)
, (26714, 'Petal', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c72834655b8583f40cf9ecbd4a45056c0, 10454, 1, @CurrentDateTime, @EndOfTime)
, (26715, 'Petaluma', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c68041bd7bf1d4340e03ab5e9bea85ec0, 57941, 1, @CurrentDateTime, @EndOfTime)
, (26716, 'Peterborough', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010ccc4ef51a716f454089a6a267e9fc51c0, 3103, 1, @CurrentDateTime, @EndOfTime)
, (26717, 'Peterman', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010caa1501a9a8953f4093a8177c9ad055c0, 89, 1, @CurrentDateTime, @EndOfTime)
, (26718, 'Peters', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c1968887489fd4240a374e95f12435ec0, 672, 1, @CurrentDateTime, @EndOfTime)
, (26719, 'Peters', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ced2708c325dc3d40e45f15b9f10b58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26720, 'Petersboro', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010cad286f91c5e24440cfaff72c19ff5bc0, 324, 1, @CurrentDateTime, @EndOfTime)
, (26721, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c070d58cdce744440d281f634f12154c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26722, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cf0cb4f60f05f45407801405fc45552c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26723, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c89ec832c0b814440bf057ef989a152c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26724, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010ce113a1c7dec345406c5f9be8ceba57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26725, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c128a085adc8843402c89a2f6913755c0, 620, 1, @CurrentDateTime, @EndOfTime)
, (26726, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c624788974cef404017a29e993b6659c0, 1202, 1, @CurrentDateTime, @EndOfTime)
, (26727, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cbb6a5496d7674c4017821c94709e60c0, 2948, 1, @CurrentDateTime, @EndOfTime)
, (26728, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c85c4872359f344401a4a928cc1ed54c0, 1146, 1, @CurrentDateTime, @EndOfTime)
, (26729, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c482ccebd2c9d4240e9f8c32ab95953c0, 32420, 1, @CurrentDateTime, @EndOfTime)
, (26730, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010cf82702e66b0148407cb43863188058c0, 192, 1, @CurrentDateTime, @EndOfTime)
, (26731, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cc81869f349494440a6835039018353c0, 480, 1, @CurrentDateTime, @EndOfTime)
, (26732, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c48af61e17f014440bde6b056487656c0, 2260, 1, @CurrentDateTime, @EndOfTime)
, (26733, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c1b2c9ca4f93e434087776ffbd4d155c0, 2383, 1, @CurrentDateTime, @EndOfTime)
, (26734, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c345882d60d7f4340566c825eeec753c0, 2467, 1, @CurrentDateTime, @EndOfTime)
, (26735, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010cbba4202eefa841404a33ccbfcca855c0, 544, 1, @CurrentDateTime, @EndOfTime)
, (26736, 'Petersburg', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010ce26366553aed444025ff3806098558c0, 333, 1, @CurrentDateTime, @EndOfTime)
, (26737, 'Petersham', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c6b31d351693e454087a00f3bf80b52c0, 243, 1, @CurrentDateTime, @EndOfTime)
, (26738, 'Peterson', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c83bd2e68c69d40402d08e57d1cdb55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26739, 'Peterson', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cc9117c1d82754540703c444802d657c0, 334, 1, @CurrentDateTime, @EndOfTime)
, (26740, 'Peterson', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c450e1137a7e445407a14538e6ef556c0, 199, 1, @CurrentDateTime, @EndOfTime)
, (26741, 'Peterstown', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cc5628a28dcb242406f0388cc263354c0, 653, 1, @CurrentDateTime, @EndOfTime)
, (26742, 'Petersville', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c67d47c957c6d4140a1f31abb44ec55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26743, 'Petersville', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c78cce5ab893f4f40a128756e7fd862c0, 4, 1, @CurrentDateTime, @EndOfTime)
, (26744, 'Petersville', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c063873fedc3843405cf22ecd63df54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26745, 'Petoskey', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c3a1966b2c9af464070992e1f243d55c0, 5670, 1, @CurrentDateTime, @EndOfTime)
, (26746, 'Petrey', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c7c8159a148d93f4050c829954b8d55c0, 58, 1, @CurrentDateTime, @EndOfTime)
, (26747, 'Petroleum', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c44fb58c16f984340420a9e422e5154c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26748, 'Petrolia', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ce6d7c523a72944406bcc35165e125fc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26749, 'Petrolia', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c98ac40e378df4240110d9c7d2fde57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26750, 'Petrolia', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c5932c7f2ae014140293c6876dd8e58c0, 686, 1, @CurrentDateTime, @EndOfTime)
, (26751, 'Petrolia', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cc4ae92342482444057d17a53eced53c0, 212, 1, @CurrentDateTime, @EndOfTime)
, (26752, 'Petronila', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cc7bab88d06ac3b40f937c368b16858c0, 113, 1, @CurrentDateTime, @EndOfTime)
, (26753, 'Petros', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c3b6af1ce460c4240e94999d4501c55c0, 583, 1, @CurrentDateTime, @EndOfTime)
, (26754, 'Pettibone', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010c2c45f295408f4740fd7b3a6840e158c0, 70, 1, @CurrentDateTime, @EndOfTime)
, (26755, 'Pettigrew', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c94a69c8aafe841404dae1864816957c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26756, 'Pettisville', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c828472eceac344404514eef0b20e55c0, 498, 1, @CurrentDateTime, @EndOfTime)
, (26757, 'Pettit', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c17bbf0d066e2414083b2059150bf57c0, 954, 1, @CurrentDateTime, @EndOfTime)
, (26758, 'Pettry', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c03c12d69d6b74240c30a5cc3b13d54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26759, 'Pettus', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c2b78c02b389e3c40a428869a577358c0, 558, 1, @CurrentDateTime, @EndOfTime)
, (26760, 'Petty', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ce976402322cd40401b1a0577d6f357c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26761, 'Pevely', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c834a010e46244340e0fe12a7499956c0, 5484, 1, @CurrentDateTime, @EndOfTime)
, (26762, 'Pewamo', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c40ca3e7e2580454056067a4d343655c0, 469, 1, @CurrentDateTime, @EndOfTime)
, (26763, 'Pewaukee', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c58bfe32549884540e179a9d8980f56c0, 13195, 1, @CurrentDateTime, @EndOfTime)
, (26764, 'Pewaukee village', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c0f4d8f5ced8a454016bb229d261056c0, 8166, 1, @CurrentDateTime, @EndOfTime)
, (26765, 'Pewee Valley', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010ccca9ae8dc2274340f8a75489325f55c0, 1456, 1, @CurrentDateTime, @EndOfTime)
, (26766, 'Peyton', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c517d8c5eb2834340230ca8dce91e5ac0, 250, 1, @CurrentDateTime, @EndOfTime)
, (26767, 'Pfeifer', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c78ec0cf8a15a4340bd9d8e119aca58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26768, 'Pflugerville', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c4adbae867a703e4048f88326ae6758c0, 46936, 1, @CurrentDateTime, @EndOfTime)
, (26769, 'Pharr', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c9462ec29de313a40b5b5cf74c08b58c0, 70400, 1, @CurrentDateTime, @EndOfTime)
, (26770, 'Pharsalia', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c6f8a7db89a4a4540d8d47954fcf152c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26771, 'Pheba', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c2e3d9aeac9ca40403a782634c93c56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26772, 'Phelan', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c6c0487bc8a36414061545227a0645dc0, 14304, 1, @CurrentDateTime, @EndOfTime)
, (26773, 'Phelps', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c7d0f4d8f5c5941403fb78608ee3e55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26774, 'Phelps', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c688bb50941b23e402b1213d470dc57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26775, 'Phelps', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cec7541333e084740ce0248c89b4556c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26776, 'Phelps', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c9fcfdb33a6c1424004a3dcc79b8954c0, 893, 1, @CurrentDateTime, @EndOfTime)
, (26777, 'Phelps', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cd9e90775917a4540fb5dd89aad4353c0, 1989, 1, @CurrentDateTime, @EndOfTime)
, (26778, 'Phelps City', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c312cda77a03344409c9b80704fe657c0, 24, 1, @CurrentDateTime, @EndOfTime)
, (26779, 'Phenix', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010ccb83f414398a4240a15e95b0dbaf53c0, 226, 1, @CurrentDateTime, @EndOfTime)
, (26780, 'Phenix City', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c4c59e1f1483c40402f9ee6890c4055c0, 32822, 1, @CurrentDateTime, @EndOfTime)
, (26781, 'Phil Campbell', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c22d85d45eb2c414091d3d7f335ed55c0, 1148, 1, @CurrentDateTime, @EndOfTime)
, (26782, 'Philadelphia', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c914f7e41c1624040cec29e76784756c0, 7477, 1, @CurrentDateTime, @EndOfTime)
, (26783, 'Philadelphia', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c03fe3a81fad6414003e9071ad81955c0, 656, 1, @CurrentDateTime, @EndOfTime)
, (26784, 'Philadelphia', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cdc4aafcdc613464018e87f5e5ded52c0, 1252, 1, @CurrentDateTime, @EndOfTime)
, (26785, 'Philadelphia', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c07ebff1ce6f94340739cdb847bca52c0, 1526006, 1, @CurrentDateTime, @EndOfTime)
, (26786, 'Philadelphia', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c02147e0459eb43407484679d4cef56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26787, 'Philbrook', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010cc645ff1543244740037f53b3e2ad57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26788, 'Philip', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c77f123230c05464027288fb8916a59c0, 779, 1, @CurrentDateTime, @EndOfTime)
, (26789, 'Philipp', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cfdb6cc8ef9e0404008c72c7b128d56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26790, 'Philippi', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c42c417377f934340ddc8e138950254c0, 2966, 1, @CurrentDateTime, @EndOfTime)
, (26791, 'Philipsburg', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c8d0e48c2be72444026a199cc1d8e53c0, 2770, 1, @CurrentDateTime, @EndOfTime)
, (26792, 'Philipsburg', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c8778dad0832a474081ff52abd4525cc0, 820, 1, @CurrentDateTime, @EndOfTime)
, (26793, 'Phillips', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cf317928543414140e845b88c950f58c0, 135, 1, @CurrentDateTime, @EndOfTime)
, (26794, 'Phillips', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010ca1759ec25b69464083893f8aba9551c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26795, 'Phillips', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ce1021ab677d8414023c6c617485759c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26796, 'Phillips', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010ccc86eb072bd946406c1679a3a09956c0, 1478, 1, @CurrentDateTime, @EndOfTime)
, (26797, 'Phillips', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c506caa93d8724440f8938cf7be8d58c0, 287, 1, @CurrentDateTime, @EndOfTime)
, (26798, 'Phillipsburg', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cbea7cd93c6f34340f185240eb41955c0, 557, 1, @CurrentDateTime, @EndOfTime)
, (26799, 'Phillipsburg', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c5a59ec40e7c642407c0bebc63b3257c0, 202, 1, @CurrentDateTime, @EndOfTime)
, (26800, 'Phillipsburg', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c102a2790c8e04340a0f8d62cbcd458c0, 2581, 1, @CurrentDateTime, @EndOfTime)
, (26801, 'Phillipsburg', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010caab46a7ccb584440c67e60d82bcc52c0, 14950, 1, @CurrentDateTime, @EndOfTime)
, (26802, 'Phillipsburg', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c160d631c6dba42407d8f9f32a35055c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26803, 'Phillipston', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c476b56c73b4645405900aebf800852c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26804, 'Phillipstown', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c9c2a29c12c12434026f67585630156c0, 44, 1, @CurrentDateTime, @EndOfTime)
, (26805, 'Phillipsville', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ce4a9fd8cc11a44407442e8a04bf25ec0, 140, 1, @CurrentDateTime, @EndOfTime)
, (26806, 'Philmont', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cdf516342cc1f45400ea2b5a2cd6952c0, 1379, 1, @CurrentDateTime, @EndOfTime)
, (26807, 'Philo', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cfab9a1293bee4340e43dbd08097a54c0, 733, 1, @CurrentDateTime, @EndOfTime)
, (26808, 'Philo', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c44adc497e40044400e000b4f1e0a56c0, 1466, 1, @CurrentDateTime, @EndOfTime)
, (26809, 'Philo', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cd02456eb698843409d7a49087bdc5ec0, 349, 1, @CurrentDateTime, @EndOfTime)
, (26810, 'Philomath', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cabed81b119dd40403733fad170bf54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26811, 'Philomath', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c007157af22454640afbd05c886d75ec0, 4584, 1, @CurrentDateTime, @EndOfTime)
, (26812, 'Philpot', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c4582a966d6dd4240ec6415db49bf55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26813, 'Phippsburg', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c78407edbb81d4440fc427eec64bc5ac0, 204, 1, @CurrentDateTime, @EndOfTime)
, (26814, 'Phippsburg', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c6ced7daa0ae945401df45b2a257451c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26815, 'Phlox', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c903cc6cb89864640478666e8e94056c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26816, 'Phoenicia', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cf5a4a723db0a4540f95404ee2f9452c0, 309, 1, @CurrentDateTime, @EndOfTime)
, (26817, 'Phoenix', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c24415d49979d454051943ab73f1353c0, 2382, 1, @CurrentDateTime, @EndOfTime)
, (26818, 'Phoenix', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c128cde043ace44406742380ba0e855c0, 1964, 1, @CurrentDateTime, @EndOfTime)
, (26819, 'Phoenix', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c80b4a44863a53d408ec3aa8b257c56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26820, 'Phoenix', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cfb253d67664a4040f1af2f2306a456c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26821, 'Phoenix', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c7a104c7f40234540a1478c9e5bb45ec0, 4538, 1, @CurrentDateTime, @EndOfTime)
, (26822, 'Phoenix', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c3e63ba6b64b94040c98bf106bd045cc0, 1445632, 1, @CurrentDateTime, @EndOfTime)
, (26823, 'Phoenix Lake', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cae62f19bc200434093c5fd47a6135ec0, 4269, 1, @CurrentDateTime, @EndOfTime)
, (26824, 'Phoenixville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c827d2a5db0104440ad12d154f4e052c0, 16440, 1, @CurrentDateTime, @EndOfTime)
, (26825, 'Pica', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c50cf712486ba41409ab745f4c6485cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26826, 'Picabo', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c65506d7022a74540d910d20957845cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26827, 'Picacho', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c0d17b9a7ab5b404021c20996b4df5bc0, 471, 1, @CurrentDateTime, @EndOfTime)
, (26828, 'Picacho', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c97080a7206ad40400582a55f47495ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26829, 'Picayune', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c270e452685863e40ded6cc107d6b56c0, 10878, 1, @CurrentDateTime, @EndOfTime)
, (26830, 'Picher', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c0642ca41647e4240f0ea319eccb657c0, 20, 1, @CurrentDateTime, @EndOfTime)
, (26831, 'Pick City', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010ca005572f75c147403c52d8a00a5d59c0, 123, 1, @CurrentDateTime, @EndOfTime)
, (26832, 'Pickens', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cf20467953eec40402d4377a4d5de56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26833, 'Pickens', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c91c71d801e714040665c829d2c7e56c0, 1157, 1, @CurrentDateTime, @EndOfTime)
, (26834, 'Pickens', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cf59782da147141408f858d5745ad54c0, 3126, 1, @CurrentDateTime, @EndOfTime)
, (26835, 'Pickens', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c786f568eda5343400b0a83328d0d54c0, 66, 1, @CurrentDateTime, @EndOfTime)
, (26836, 'Pickens', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cb3d2178f413341409fcdd09648c257c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26837, 'Pickensville', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c5ef415a4199d4040ca1af5100d1156c0, 608, 1, @CurrentDateTime, @EndOfTime)
, (26838, 'Pickering', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c6ea46c91b4394440ef1b5f7be6b557c0, 160, 1, @CurrentDateTime, @EndOfTime)
, (26839, 'Pickerington', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c831035762ef143400cb89d6c39b054c0, 18291, 1, @CurrentDateTime, @EndOfTime)
, (26840, 'Pickett', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cbc3e73d6a7f445407f23cb93b52e56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26841, 'Pickford', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cb1f8f2a732144740e2523afd451755c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26842, 'Pickrell', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cc3efa65b763044404e6d5ff6a12e58c0, 199, 1, @CurrentDateTime, @EndOfTime)
, (26843, 'Pickstown', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010cf2de628f9a884540be86e0b80ca258c0, 201, 1, @CurrentDateTime, @EndOfTime)
, (26844, 'Pickton', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cf8c9ac399b8340400a0d69f926d957c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26845, 'Pico Rivera', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ce6dbcc32d5fd40403a58ffe730865dc0, 62942, 1, @CurrentDateTime, @EndOfTime)
, (26846, 'Picture Rocks', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cb969d894d0a34440cbea67fba12d53c0, 678, 1, @CurrentDateTime, @EndOfTime)
, (26847, 'Picture Rocks', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cfa7a63ad462c40400eb3e1fac1cf5bc0, 9563, 1, @CurrentDateTime, @EndOfTime)
, (26848, 'Picuris Pueblo', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c7f51ddb7b5194240a38a2ce3706d5ac0, 68, 1, @CurrentDateTime, @EndOfTime)
, (26849, 'Pidcoke', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c4ab8904770473f402be917dbda7858c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26850, 'Pie Town', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cbdc05197312641406182644ba0085bc0, 186, 1, @CurrentDateTime, @EndOfTime)
, (26851, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c5fd8f5662f82404006da1d520c1055c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26852, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cc955443faed24140565ab63e4b7158c0, 5720, 1, @CurrentDateTime, @EndOfTime)
, (26853, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c92205c0185e94240f9669b1bd38e5ec0, 10667, 1, @CurrentDateTime, @EndOfTime)
, (26854, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c998235cea61d46409c4b169ce6d859c0, 222, 1, @CurrentDateTime, @EndOfTime)
, (26855, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010cfdffeed3a79b44402db5392927a85bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26856, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c0f03a7881d18444061f5ec5e934c54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26857, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c357f4c6bd3cf42409dad7257651758c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26858, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c6855f08057f64040017a2b5c206755c0, 4878, 1, @CurrentDateTime, @EndOfTime)
, (26859, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cb41ab73de65941400b6aae89bb9d54c0, 5103, 1, @CurrentDateTime, @EndOfTime)
, (26860, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c4d34a37ac69342407a0904f085ac56c0, 1977, 1, @CurrentDateTime, @EndOfTime)
, (26861, 'Piedmont', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cde7aa8c87cbd4340a58059460fc353c0, 876, 1, @CurrentDateTime, @EndOfTime)
, (26862, 'Piedra', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010caeef6888cf73404015d4a6a0113f5cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26863, 'Piedra Aguza', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c445ec598aa083240a2a24511ad9f50c0, 2901, 1, @CurrentDateTime, @EndOfTime)
, (26864, 'Piedra Gorda', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c8f45e405226f32407e99deb4cfb850c0, 1937, 1, @CurrentDateTime, @EndOfTime)
, (26865, 'Pierce', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c20b75f3e595144403fdc7af255305ac0, 834, 1, @CurrentDateTime, @EndOfTime)
, (26866, 'Pierce', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c5b142cc4d93e4740c4831c4a23f35cc0, 508, 1, @CurrentDateTime, @EndOfTime)
, (26867, 'Pierce', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010ca6b9707bdd9742406d12cd4de56655c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26868, 'Pierce', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c90b3fa34383d3d40b5bbac2ecc0c58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26869, 'Pierce', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cb94116a529b841402ef6ced05eef57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26870, 'Pierce', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c132c0e677e194540b51f84dbb56158c0, 1767, 1, @CurrentDateTime, @EndOfTime)
, (26871, 'Pierce City', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c5578e11813794240ab686270038057c0, 1292, 1, @CurrentDateTime, @EndOfTime)
, (26872, 'Piercefield', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c16c1ff56b21d4640350de59f74a452c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26873, 'Pierceton', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010ce811482ea4994440b6dd5f98276d55c0, 1015, 1, @CurrentDateTime, @EndOfTime)
, (26874, 'Pierceville', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010caae0a6f56df04240a7cd380d512b59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26875, 'Piercy', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c30fbd060aefb43408a9b093ce6f25ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26876, 'Piermont', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010ccb01710d22fc4540f7c6b546290552c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26877, 'Piermont', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cfe09d39c61854440badc60a8c37a52c0, 2510, 1, @CurrentDateTime, @EndOfTime)
, (26878, 'Pierpont', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c2ef30cd06cbf464057c7968a327558c0, 135, 1, @CurrentDateTime, @EndOfTime)
, (26879, 'Pierpont', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c41d7be805e6e434063b1f270271457c0, 76, 1, @CurrentDateTime, @EndOfTime)
, (26880, 'Pierpont', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c0d7a257fe6df4440bd34eac6602454c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26881, 'Pierre', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010ca64d30f7242f464076df313c761659c0, 13646, 1, @CurrentDateTime, @EndOfTime)
, (26882, 'Pierre Part', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c000cba7317f73d403558dd8f00cd56c0, 3169, 1, @CurrentDateTime, @EndOfTime)
, (26883, 'Pierrepont', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cb253628d69454640797d4166c2c052c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26884, 'Pierrepont Manor', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c48ecc9b216de454007a8ba91c30353c0, 228, 1, @CurrentDateTime, @EndOfTime)
, (26885, 'Pierron', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c0eab2e96d863434076960ff7476656c0, 600, 1, @CurrentDateTime, @EndOfTime)
, (26886, 'Pierson', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c86f3ba8feda845400c40fe2ddc5f55c0, 172, 1, @CurrentDateTime, @EndOfTime)
, (26887, 'Pierson', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cda69b5d14a3d3d40628ca3cdcc5d54c0, 1736, 1, @CurrentDateTime, @EndOfTime)
, (26888, 'Pierson', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c34750de9a6454540b6f63e5585f757c0, 366, 1, @CurrentDateTime, @EndOfTime)
, (26889, 'Pierz', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c58db5e1ca6fd4640155fa39bb38657c0, 1393, 1, @CurrentDateTime, @EndOfTime)
, (26890, 'Piffard', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cd2d2cbde086a4540772d211f747653c0, 220, 1, @CurrentDateTime, @EndOfTime)
, (26891, 'Pigeon', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cd4d74eef3dea4540713898f246d154c0, 1208, 1, @CurrentDateTime, @EndOfTime)
, (26892, 'Pigeon Cove', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010ca6cfb3fe3b564540b34baf2880a851c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26893, 'Pigeon Falls', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cfcd357a1923646409f58a7ca77cd56c0, 411, 1, @CurrentDateTime, @EndOfTime)
, (26894, 'Pigeon Forge', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c6a70b614ebe441403326b3307ae354c0, 5875, 1, @CurrentDateTime, @EndOfTime)
, (26895, 'Pigeon River', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c8b506c054d014840219221c7566d56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26896, 'Piggott', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c11514cde003142401576acad338c56c0, 3849, 1, @CurrentDateTime, @EndOfTime)
, (26897, 'Pike', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c232823d346a4434025485b4b374554c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26898, 'Pike', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cdca62ecf39474540a02f6244c78953c0, 371, 1, @CurrentDateTime, @EndOfTime)
, (26899, 'Pike', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cc2bf081a33b8434094e9865cdf3f5ec0, 134, 1, @CurrentDateTime, @EndOfTime)
, (26900, 'Pike City', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cc339d9bc600e41405a4d32cdcf6457c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26901, 'Pike Road', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cb8c8e2a36ad74140b03495ea272853c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26902, 'Pike Road', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c32fdb73764244040dc1b32d4978655c0, 5406, 1, @CurrentDateTime, @EndOfTime)
, (26903, 'Pike View', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cb5215a8693b042404c4d277e317055c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26904, 'Pikesville', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cb9a3a42ce8af43402eb022fe3c2e53c0, 30764, 1, @CurrentDateTime, @EndOfTime)
, (26905, 'Piketon', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c48049953b888434094d85a04ebc054c0, 2181, 1, @CurrentDateTime, @EndOfTime)
, (26906, 'Pikeview', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c2d3f709527754340de33b7e79e345ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26907, 'Pikeville', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cd305aba058bd424033784e6933a154c0, 6903, 1, @CurrentDateTime, @EndOfTime)
, (26908, 'Pikeville', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c74d99e0f85cd41409516e41d164c55c0, 1608, 1, @CurrentDateTime, @EndOfTime)
, (26909, 'Pikeville', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010ccbd6fa22a1bf414003bbf5f5d77e53c0, 678, 1, @CurrentDateTime, @EndOfTime)
, (26910, 'Pilar', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c8b9f6b0487224240cd9948c46f725ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26911, 'Pilger', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c4c9d91521a01454030af6d9b734358c0, 352, 1, @CurrentDateTime, @EndOfTime)
, (26912, 'Pilgrim', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c79b361a81e5546409347814fbd8f55c0, 11, 1, @CurrentDateTime, @EndOfTime)
, (26913, 'Pillager', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c0562235a3c2a47406d2695df589e57c0, 469, 1, @CurrentDateTime, @EndOfTime)
, (26914, 'Pillow', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ca2348a9b095244409021b6aa5b3353c0, 298, 1, @CurrentDateTime, @EndOfTime)
, (26915, 'Pillsbury', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010c55c5afb37c9a4740d5f6651f9a7258c0, 12, 1, @CurrentDateTime, @EndOfTime)
, (26916, 'Pilot Grove', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010ca52f849cf76f4340c746205e573a57c0, 768, 1, @CurrentDateTime, @EndOfTime)
, (26917, 'Pilot Hill', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cac76a801de6a4340879dcebaeb405ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26918, 'Pilot Knob', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c1106f93482cf424079b53753fca856c0, 746, 1, @CurrentDateTime, @EndOfTime)
, (26919, 'Pilot Mound', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c001de6cb0b154540877b1b51108157c0, 173, 1, @CurrentDateTime, @EndOfTime)
, (26920, 'Pilot Mountain', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cf1c3f7b47931424065f95f530c1e54c0, 1477, 1, @CurrentDateTime, @EndOfTime)
, (26921, 'Pilot Point', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c02ff4a9d36c84c40d56d9a8888b263c0, 68, 1, @CurrentDateTime, @EndOfTime)
, (26922, 'Pilot Point', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c09e23c9cc0b24040747401d4793d58c0, 3856, 1, @CurrentDateTime, @EndOfTime)
, (26923, 'Pilot Rock', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010ce4b5b700d9bd4640560b91781eb55dc0, 1502, 1, @CurrentDateTime, @EndOfTime)
, (26924, 'Pilot Station', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010ce909f0822df84e4000000000005c64c0, 568, 1, @CurrentDateTime, @EndOfTime)
, (26925, 'Pilottown', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010ca28ad1297e2e3d40ea4207b87b5056c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26926, 'Pilsen', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cc3a68416c83846408fc8d2e267ee55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26927, 'Piltzville', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c3308628f3f6e4740fdba78e434775cc0, 395, 1, @CurrentDateTime, @EndOfTime)
, (26928, 'Pima', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cfcfcf7e0b572404093516518f7745bc0, 2387, 1, @CurrentDateTime, @EndOfTime)
, (26929, 'Pimento', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c921271299da74340e386849444d855c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26930, 'Pimmit Hills', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c67f0f78bd9744340d8046223da4c53c0, 6094, 1, @CurrentDateTime, @EndOfTime)
, (26931, 'Pinardville', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010ca283899a437f4540fe04bc7177e051c0, 4780, 1, @CurrentDateTime, @EndOfTime)
, (26932, 'Pinch', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cad48f196503443409367a89bd55e54c0, 3262, 1, @CurrentDateTime, @EndOfTime)
, (26933, 'Pinckard', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cd8b38c79c24f3f40b57faf32646355c0, 647, 1, @CurrentDateTime, @EndOfTime)
, (26934, 'Pinckney', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c35c52d30753a4540f76173c490fc54c0, 2427, 1, @CurrentDateTime, @EndOfTime)
, (26935, 'Pinckneyville', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c7cf72235480a43406ce1c336735856c0, 5648, 1, @CurrentDateTime, @EndOfTime)
, (26936, 'Pinckneyville', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c0b6c843419043f40f901fedfc7de56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26937, 'Pinconning', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cc0266bd443ed45402b84d558c2fd54c0, 1307, 1, @CurrentDateTime, @EndOfTime)
, (26938, 'Pindall', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c57bdb2c17808424025462ae7663857c0, 112, 1, @CurrentDateTime, @EndOfTime)
, (26939, 'Pine', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c3255d570363141400765750621dd5bc0, 1963, 1, @CurrentDateTime, @EndOfTime)
, (26940, 'Pine', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010cce00721d3e6e46408d367d2cb3455dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26941, 'Pine', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010cffdce1c0f5bd4540b11fbd3cf8d35cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26942, 'Pine Aire', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c768478c9a4624440e399e150895152c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26943, 'Pine Apple', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c5bd2510e66df3f4057105e166ebf55c0, 132, 1, @CurrentDateTime, @EndOfTime)
, (26944, 'Pine Barren', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cce0d976604c73e408ac67f2667d555c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26945, 'Pine Beach', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c32923d42cdf74340e4bed53af18a52c0, 2127, 1, @CurrentDateTime, @EndOfTime)
, (26946, 'Pine Bend', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c741e5f8c92b64740ece0bb28d5e557c0, 28, 1, @CurrentDateTime, @EndOfTime)
, (26947, 'Pine Bluff', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c6ab1ca3b3d1d4140a4ffe55a340057c0, 49083, 1, @CurrentDateTime, @EndOfTime)
, (26948, 'Pine Bluffs', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010cf8e4bc5a499744406925636b6c045ac0, 1129, 1, @CurrentDateTime, @EndOfTime)
, (26949, 'Pine Brook', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cae1c10d7206e444057491a92c99552c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26950, 'Pine Bush', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c568b3ed5d7cd44401dcc8179239352c0, 1780, 1, @CurrentDateTime, @EndOfTime)
, (26951, 'Pine Castle', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c18e2a2a4d1783c402a5a14d18a5754c0, 10805, 1, @CurrentDateTime, @EndOfTime)
, (26952, 'Pine Center', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010ce4480ca7711b474056a64ef6857a57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26953, 'Pine City', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010ceffe1df6e7994740cfd1f4238f615dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26954, 'Pine City', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c2e26ec91bce94640bad2d798fc3d57c0, 3123, 1, @CurrentDateTime, @EndOfTime)
, (26955, 'Pine Cove', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c5b11908a5ae14040d146640e382f5dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26956, 'Pine Flat', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cf718517f62f04140f2a501cdb1a95dc0, 166, 1, @CurrentDateTime, @EndOfTime)
, (26957, 'Pine Forest', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cc98ff8156b2e3e40e09398b1328257c0, 487, 1, @CurrentDateTime, @EndOfTime)
, (26958, 'Pine Glen', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ccec7b5a1628b44404985b185a08353c0, 190, 1, @CurrentDateTime, @EndOfTime)
, (26959, 'Pine Grove', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c5c6b39e16fc843402abeeb7d742b54c0, 552, 1, @CurrentDateTime, @EndOfTime)
, (26960, 'Pine Grove', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ca5ee14bc3246444032bfe4909e1853c0, 2186, 1, @CurrentDateTime, @EndOfTime)
, (26961, 'Pine Grove', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010cd554bbcbea8d46408ff51e7846575ec0, 148, 1, @CurrentDateTime, @EndOfTime)
, (26962, 'Pine Grove', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cb92a9a18dc344340affdae192a2a5ec0, 2219, 1, @CurrentDateTime, @EndOfTime)
, (26963, 'Pine Grove', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010cb51bd8857ab44340122d1e83ba545ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26964, 'Pine Grove', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c6ab46675bcb53e409166875341b056c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26965, 'Pine Grove', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c55ec79484200434020ed7f80351455c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26966, 'Pine Grove Mills', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ce236bf06e95d44403c5002f6ac7853c0, 1502, 1, @CurrentDateTime, @EndOfTime)
, (26967, 'Pine Hall', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c53324ae18b29424026451acb2a0354c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26968, 'Pine Harbor', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ce31f11aedb6240404ffc6200f29f57c0, 810, 1, @CurrentDateTime, @EndOfTime)
, (26969, 'Pine Haven', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010ce5e6c017cb2d46401ce49aa7df335ac0, 490, 1, @CurrentDateTime, @EndOfTime)
, (26970, 'Pine Hill', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cf4d088e30a114540c4a6dfcfba9e52c0, 275, 1, @CurrentDateTime, @EndOfTime)
, (26971, 'Pine Hill', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010ca42e635463e443408a004cbe7ebf52c0, 10233, 1, @CurrentDateTime, @EndOfTime)
, (26972, 'Pine Hill', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c17d929b1c6fa3f40a76d0db6a2e555c0, 975, 1, @CurrentDateTime, @EndOfTime)
, (26973, 'Pine Hills', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cec6179a1ca8e3c40c836ba94045d54c0, 60076, 1, @CurrentDateTime, @EndOfTime)
, (26974, 'Pine Island', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c2ad725f444933c40c5b59036c4a954c0, 64, 1, @CurrentDateTime, @EndOfTime)
, (26975, 'Pine Island', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010cdc3642f5c51946401e7a41fa5c2957c0, 3263, 1, @CurrentDateTime, @EndOfTime)
, (26976, 'Pine Island', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c1a3f43eed80e3e4025bf8fb4650258c0, 988, 1, @CurrentDateTime, @EndOfTime)
, (26977, 'Pine Island', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c9cb11ead20a6444025917d90659d52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26978, 'Pine Island Center', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cb106de7f1a9d3a40d4a535bc8f8754c0, 1854, 1, @CurrentDateTime, @EndOfTime)
, (26979, 'Pine Island Ridge', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c1e577e7445183a40cce78134881154c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26980, 'Pine Knoll Shores', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c4ee152df43594140fa145b9c0c3453c0, 1339, 1, @CurrentDateTime, @EndOfTime)
, (26981, 'Pine Knot', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010ccb47f7185153424098cc672f111c55c0, 1621, 1, @CurrentDateTime, @EndOfTime)
, (26982, 'Pine Lake', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c17a7107e98e54040ca5d3a9c2f0d55c0, 730, 1, @CurrentDateTime, @EndOfTime)
, (26983, 'Pine Lake', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c02a8983913ca474017c38b74f5825ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26984, 'Pine Lake', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010cfa8beabead3245408a236afd08dd51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26985, 'Pine Lake Park', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010ce3dd36f867004440a6153a0a6b9052c0, 8707, 1, @CurrentDateTime, @EndOfTime)
, (26986, 'Pine Lakes', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c8dd0cfd4ebf03c40a4e4d539865b54c0, 862, 1, @CurrentDateTime, @EndOfTime)
, (26987, 'Pine Lakes Addition', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010cd544fa48a5c64540f56ff2b6ad2858c0, 314, 1, @CurrentDateTime, @EndOfTime)
, (26988, 'Pine Lawn', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cf6e571bd12594340ab2c65749b9156c0, 3275, 1, @CurrentDateTime, @EndOfTime)
, (26989, 'Pine Level', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c9aa5530db1c14140c9b0e5f0a48f53c0, 1700, 1, @CurrentDateTime, @EndOfTime)
, (26990, 'Pine Level', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010ce99f3b1cb84a40405771f442cb9d55c0, 4183, 1, @CurrentDateTime, @EndOfTime)
, (26991, 'Pine Level', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cb27389d981e33e4003fdcfabcbca55c0, 227, 1, @CurrentDateTime, @EndOfTime)
, (26992, 'Pine Level', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010ccf424cd3b1084040772ff7c9d18355c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26993, 'Pine Log', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c1c57c80160673e402cde7eaf577a55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26994, 'Pine Log', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010caf21382ee32b4140b9a063acdb2e55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26995, 'Pine Mountain', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cd46f157ab36e4040a3247f8ba93655c0, 1304, 1, @CurrentDateTime, @EndOfTime)
, (26996, 'Pine Mountain Lake', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cf8d73c5810ee4240a3f1fa82cc0b5ec0, 2796, 1, @CurrentDateTime, @EndOfTime)
, (26997, 'Pine Mountain Valley', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c81f398373d6640409abff858b03455c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26998, 'Pine Orchard', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c08173c9688a3434092a2df081c3753c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (26999, 'Pine Park', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c98fc4ffeeed93e4015191d90840655c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27000, 'Pine Plains', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c9a53138e6afd4440919e7d40fb6952c0, 1353, 1, @CurrentDateTime, @EndOfTime)
COMMIT
GO
BEGIN TRANSACTION
DECLARE @CurrentDateTime datetime2(7) = '20200101'
DECLARE @EndOfTime datetime2(7) = '99991231 23:59:59.9999999'
INSERT [Application].Cities (CityID, CityName, StateProvinceID, [Location], LatestRecordedPopulation, LastEditedBy, ValidFrom, ValidTo)
VALUES (27001, 'Pine Point', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010ccfc6a585267d47401dba8f928dd857c0, 338, 1, @CurrentDateTime, @EndOfTime)
, (27002, 'Pine Prairie', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c9263a18ca7c83e40f4160fef391b57c0, 1610, 1, @CurrentDateTime, @EndOfTime)
, (27003, 'Pine Rest', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c2d99be32ca3145402209b1e9f7db51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27004, 'Pine Ridge', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010ce402869b42384140d4e242d4337255c0, 282, 1, @CurrentDateTime, @EndOfTime)
, (27005, 'Pine Ridge', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c92ba7c265df44040b95c3784be4654c0, 2064, 1, @CurrentDateTime, @EndOfTime)
, (27006, 'Pine Ridge', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c5a5bc2eb44834540bd8685ff99a359c0, 3308, 1, @CurrentDateTime, @EndOfTime)
, (27007, 'Pine River', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c5a3f47f5e75b474041f163ccdd9957c0, 944, 1, @CurrentDateTime, @EndOfTime)
, (27008, 'Pine River', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c25e659492b914640d7f84cf6cf6756c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27009, 'Pine River', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c7973b8567b1346407a14538eee4456c0, 147, 1, @CurrentDateTime, @EndOfTime)
, (27010, 'Pine Springs', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c3ae1ca7e82e43f408eb27e3331345ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27011, 'Pine Springs', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010cb41b221395844640b47ae294143d57c0, 408, 1, @CurrentDateTime, @EndOfTime)
, (27012, 'Pine Valley', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cb6b700d990e44340f48aa71e69be52c0, 12, 1, @CurrentDateTime, @EndOfTime)
, (27013, 'Pine Valley', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c524fd5f3246940400bc4fc26de215dc0, 1510, 1, @CurrentDateTime, @EndOfTime)
, (27014, 'Pine Valley', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cc7889f5ad81c4540f1d58ee21c3653c0, 813, 1, @CurrentDateTime, @EndOfTime)
, (27015, 'Pine Valley', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c872293420fb242400789a361e7605cc0, 186, 1, @CurrentDateTime, @EndOfTime)
, (27016, 'Pine Village', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c7d75fae6a3394440c9edf20849d055c0, 217, 1, @CurrentDateTime, @EndOfTime)
, (27017, 'Pinebluff', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c1b800d88108e4140adaf647d39de53c0, 1337, 1, @CurrentDateTime, @EndOfTime)
, (27018, 'Pinecliffe', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c9f0f858549f74340ac7c85bb695b5ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27019, 'Pinecreek', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010cf48cd882397d4840e662676556fc57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27020, 'Pinecrest', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c13e0aaa1c3aa3940f5a91908b81354c0, 18223, 1, @CurrentDateTime, @EndOfTime)
, (27021, 'Pineda', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cb20a4048bb3c3c403b62e3b06a2b54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27022, 'Pinedale', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c5fdcfc755d2741401df11aaa18905bc0, 487, 1, @CurrentDateTime, @EndOfTime)
, (27023, 'Pinedale', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010c39701816ed6e45404093b3661a775bc0, 2030, 1, @CurrentDateTime, @EndOfTime)
, (27024, 'Pinedale', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c6ddb9cef4ccd414004e8f7fd9b1c5bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27025, 'Pinedale', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cd07a9d79de6b42405e08de358df25dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27026, 'Pinehill', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c790206eee57f4140424de3cd501a5bc0, 88, 1, @CurrentDateTime, @EndOfTime)
, (27027, 'Pinehurst', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c4b0169ff03994140fa2e00e80bde53c0, 13124, 1, @CurrentDateTime, @EndOfTime)
, (27028, 'Pinehurst', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c304ed76e1619404005f8133ad4f054c0, 455, 1, @CurrentDateTime, @EndOfTime)
, (27029, 'Pinehurst', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010cda07b4cfbe43454064b4e96399ce51c0, 7152, 1, @CurrentDateTime, @EndOfTime)
, (27030, 'Pinehurst', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c73adac23fd584240cfbd874b0ec15dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27031, 'Pinehurst', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cc91759d70d8f4340d4ff28a0bf1b53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27032, 'Pinehurst', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c3320d6766e1b3e4055a6f33c937157c0, 2097, 1, @CurrentDateTime, @EndOfTime)
, (27033, 'Pinehurst', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cab8c90cbc92b3e4084729131adeb57c0, 4624, 1, @CurrentDateTime, @EndOfTime)
, (27034, 'Pinehurst', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010cc3a453b2f7c447400459aa66310f5dc0, 1619, 1, @CurrentDateTime, @EndOfTime)
, (27035, 'Pineland', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cf10577b17a3f3f402a2b97d75b7e57c0, 850, 1, @CurrentDateTime, @EndOfTime)
, (27036, 'Pineland', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010ce89f85a9d24c4040b5649f11364a54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27037, 'Pineland', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010ce44fafef1ea93a405fd61fbcd18954c0, 407, 1, @CurrentDateTime, @EndOfTime)
, (27038, 'Pinellas Park', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010caf7c96e7c1d73b406506e055c5ac54c0, 49079, 1, @CurrentDateTime, @EndOfTime)
, (27039, 'Pineola', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c61e86c5c5ab03c40ff0758ab769154c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27040, 'Pineora', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c01b4f7f3b7244040f33746570e5954c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27041, 'Pineridge', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c8e78b29b198842409f28bffb19d75dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27042, 'Pinesburg', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cdc8b1eae8bd0434053318452ea7653c0, 449, 1, @CurrentDateTime, @EndOfTime)
, (27043, 'Pinesdale', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010cc773c7ac282a4740ed1ae379df8d5cc0, 917, 1, @CurrentDateTime, @EndOfTime)
, (27044, 'Pinetop-Lakeside', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cb09f0fe03e124140e105b6ef767d5bc0, 4282, 1, @CurrentDateTime, @EndOfTime)
, (27045, 'Pinetops', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c33993b44ede44140241d2feed06853c0, 1374, 1, @CurrentDateTime, @EndOfTime)
, (27046, 'Pinetown', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c711294ec22ce41406d5e3013203753c0, 155, 1, @CurrentDateTime, @EndOfTime)
, (27047, 'Pinetta', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c062b4eb516983e40f9e3ac3e8dd654c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27048, 'Pineview', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c34ff9e0e1a0e4040aa0ce36e10e054c0, 523, 1, @CurrentDateTime, @EndOfTime)
, (27049, 'Pineville', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c7a612129d8144240259f0dafda0657c0, 238, 1, @CurrentDateTime, @EndOfTime)
, (27050, 'Pineville', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c9ffded57a68a414022776c5f1b3954c0, 7479, 1, @CurrentDateTime, @EndOfTime)
, (27051, 'Pineville', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c2516421889523f407442e8a0cb1b57c0, 14555, 1, @CurrentDateTime, @EndOfTime)
, (27052, 'Pineville', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010ca708cb338a6142408c5aab8779ec54c0, 1732, 1, @CurrentDateTime, @EndOfTime)
, (27053, 'Pineville', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cff339424194c4240b4322b25959857c0, 791, 1, @CurrentDateTime, @EndOfTime)
, (27054, 'Pineville', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cc3071b43a5ca42404694f6065f6254c0, 668, 1, @CurrentDateTime, @EndOfTime)
, (27055, 'Pineville', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c66b33401d0b640401122742bdf0154c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27056, 'Pinewood', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c73373e4970cc47405a7d1a9c2dc857c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27057, 'Pinewood', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cc4daceadc6de404003194ba2a81d54c0, 538, 1, @CurrentDateTime, @EndOfTime)
, (27058, 'Piney', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c1953550d6740414075b169a5104857c0, 4699, 1, @CurrentDateTime, @EndOfTime)
, (27059, 'Piney', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cdb430c8519ac414099cef34cd45457c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27060, 'Piney Fork', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c3b527de71725444079df9d21c1ff53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27061, 'Piney Green', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cf948efc0a55b41407edf64c07e5453c0, 13293, 1, @CurrentDateTime, @EndOfTime)
, (27062, 'Piney Mountain', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010ca6ca411a5f144340717c4853989a53c0, 1130, 1, @CurrentDateTime, @EndOfTime)
, (27063, 'Piney Park', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c0b24287e8c2643403858eebb58bc56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27064, 'Piney Point', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c0d8d278238124340860d05227a2053c0, 864, 1, @CurrentDateTime, @EndOfTime)
, (27065, 'Piney Point', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c8a1f63ee5aa23b408a26ab7d95a254c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27066, 'Piney Point Village', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c009013268cc23d4088e98c3919e157c0, 3125, 1, @CurrentDateTime, @EndOfTime)
, (27067, 'Piney River', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c4f8b660a42da4240984ae4277ac153c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27068, 'Piney Woods', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c86ff7403050840400c4169038b7f56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27069, 'Pingree', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010cb34291eee7944740d04df62a0dba58c0, 60, 1, @CurrentDateTime, @EndOfTime)
, (27070, 'Pingree Grove', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c16e75e16c90845405f89f667751a56c0, 4532, 1, @CurrentDateTime, @EndOfTime)
, (27071, 'Pinhook', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c600322c4955e4240267acf37d85356c0, 30, 1, @CurrentDateTime, @EndOfTime)
, (27072, 'Pink', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c10be5986dda141407c64999c2f4958c0, 2058, 1, @CurrentDateTime, @EndOfTime)
, (27073, 'Pink Hill', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cbc35559c0f874140a197f672c46f53c0, 552, 1, @CurrentDateTime, @EndOfTime)
, (27074, 'Pinkstaff', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c5efd33deb1654340406f850bd4ea55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27075, 'Pinland', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cec91bc299b043e40f812cf7ec9e154c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27076, 'Pinnacle', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cf4c87ac5ae6941400975ecfbcb1f57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27077, 'Pinnacle', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cf87365ab262a42402b61b719b81b54c0, 894, 1, @CurrentDateTime, @EndOfTime)
, (27078, 'Pinnacle', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c557545df932d484032c04f66cd695cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27079, 'Pinola', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c5ab33ade89e03f40cd3b4ed1917d56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27080, 'Pinole', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c81d888168f00434001a83d8020935ec0, 18390, 1, @CurrentDateTime, @EndOfTime)
, (27081, 'Pinon', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c36429a0c224f4040d48cfb45bf585ac0, 25, 1, @CurrentDateTime, @EndOfTime)
, (27082, 'Pinon', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cbfa89322e80c42402febb424768e5bc0, 904, 1, @CurrentDateTime, @EndOfTime)
, (27083, 'Pion Hills', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ce7abe4637737414097c5c4e663695dc0, 7272, 1, @CurrentDateTime, @EndOfTime)
, (27084, 'Pinopolis', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c59d537d5ff9c4040b9196ec0670254c0, 948, 1, @CurrentDateTime, @EndOfTime)
, (27085, 'Pinos Altos', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cdad2591c846e4040a249bd022c0e5bc0, 198, 1, @CurrentDateTime, @EndOfTime)
, (27086, 'Pinson', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c589fbcd930d84040e706f98fbbab55c0, 7163, 1, @CurrentDateTime, @EndOfTime)
, (27087, 'Pinson', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010ca64819ccbabe41404aeaa97a1e2e56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27088, 'Pinta', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c329c210b878a41408fa850dd5c685bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27089, 'Pinto', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c9edfe64306483d40a4f908a1a82559c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27090, 'Pintura', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010ca8be98d29fab42404814ff1c8b515cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27091, 'Pioche', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010c0c0adeebfff64240c632fd12f19c5cc0, 1002, 1, @CurrentDateTime, @EndOfTime)
, (27092, 'Pioneer', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c2f8e2507473743401700998c99245ec0, 1094, 1, @CurrentDateTime, @EndOfTime)
, (27093, 'Pioneer', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c6bb2eb83d1b93a405881107f034e54c0, 697, 1, @CurrentDateTime, @EndOfTime)
, (27094, 'Pioneer', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c303c404173354240280cca341a1455c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27095, 'Pioneer', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c3509de90460e4040f2f56ba19ac558c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27096, 'Pioneer', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c7beea9413d5e4040b71d64a3bddb56c0, 156, 1, @CurrentDateTime, @EndOfTime)
, (27097, 'Pioneer', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c471163e30bd744401a000572642355c0, 1380, 1, @CurrentDateTime, @EndOfTime)
, (27098, 'Pioneer', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c04ccd7c0b1534540afc9bf3b1e9957c0, 23, 1, @CurrentDateTime, @EndOfTime)
, (27099, 'Pioneer Junction', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c16a6ef35042b48405344e10e2fe15cc0, 959, 1, @CurrentDateTime, @EndOfTime)
, (27100, 'Pioneer Village', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cf0f55a75c2074340c3537e08606b55c0, 2030, 1, @CurrentDateTime, @EndOfTime)
, (27101, 'Pipe', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cd574e21703f54540a62490b7011456c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27102, 'Pipe Creek', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ce249c1093bb93d409d7f6033e5bb58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27103, 'Piper', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cae3484be4f924340d2f58e6420b757c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27104, 'Piper City', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cad68739cdb6044409a97c3ee3b0c56c0, 826, 1, @CurrentDateTime, @EndOfTime)
, (27105, 'Piperton', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c592a148ec5854140751772b6ca6756c0, 1445, 1, @CurrentDateTime, @EndOfTime)
, (27106, 'Pipestone', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c1b66683c1100464059b78b7a521458c0, 4317, 1, @CurrentDateTime, @EndOfTime)
, (27107, 'Pippa Passes', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c9cfd8172dbaa4240d284926ef0b754c0, 533, 1, @CurrentDateTime, @EndOfTime)
, (27108, 'Piqua', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c2cab9fed871244403f259d37840f55c0, 20522, 1, @CurrentDateTime, @EndOfTime)
, (27109, 'Piqua', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c6da983bc1ef64240c1745ab741e257c0, 107, 1, @CurrentDateTime, @EndOfTime)
, (27110, 'Pirtleville', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c0da59b69675b3f4048c32973f3635bc0, 1744, 1, @CurrentDateTime, @EndOfTime)
, (27111, 'Piru', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c45af50b52735414060668e9bd0b25dc0, 2063, 1, @CurrentDateTime, @EndOfTime)
, (27112, 'Piscataway', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c359e639baf5943404832ab77383e53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27113, 'Piscataway', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c006a0f20e83f44409c74b6db899952c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27114, 'Pisek', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010cf89fa124c92748404a84a169646d58c0, 106, 1, @CurrentDateTime, @EndOfTime)
, (27115, 'Pisgah', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c2f13ea8e6aea4440943314773cfb57c0, 251, 1, @CurrentDateTime, @EndOfTime)
, (27116, 'Pisgah', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c03a61d4828574140f6e6dc92417655c0, 722, 1, @CurrentDateTime, @EndOfTime)
, (27117, 'Pisgah', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c9ac640e8ea454340bbd001ee9e4853c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27118, 'Pisgah', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c85e97b0dc1a8434069b3a0e69a1755c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27119, 'Pisgah Forest', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c1700f4458ca04140d888bbd5ceac54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27120, 'Pisinemo', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c1a59e839d80440401e2224c18a145cc0, 321, 1, @CurrentDateTime, @EndOfTime)
, (27121, 'Pismo Beach', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cb37279bd4592414066ff97c60a295ec0, 7655, 1, @CurrentDateTime, @EndOfTime)
, (27122, 'Pistakee Highlands', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cc64e78094e34454037fb03e5360d56c0, 3454, 1, @CurrentDateTime, @EndOfTime)
, (27123, 'Pistol River', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c4cd3b1947623454089df5ee344195fc0, 84, 1, @CurrentDateTime, @EndOfTime)
, (27124, 'Pitcairn', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c17b02eb8301746405eeb9cb00ed252c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27125, 'Pitcairn', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cb1db679599334440f1bc546cccf153c0, 3294, 1, @CurrentDateTime, @EndOfTime)
, (27126, 'Pitcher', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c3d5409055b4a45405a6db4d25af752c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27127, 'Pitkas Point', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c75841d1032044f4079f0c979356964c0, 109, 1, @CurrentDateTime, @EndOfTime)
, (27128, 'Pitkin', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010cfefe83fef84d4340c1be428b11a15ac0, 66, 1, @CurrentDateTime, @EndOfTime)
, (27129, 'Pitkin', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c992f8a79b1ef3e402e9a84c1eb3b57c0, 576, 1, @CurrentDateTime, @EndOfTime)
, (27130, 'Pitman', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c01c0b167cfdd4340e17206906bc852c0, 9011, 1, @CurrentDateTime, @EndOfTime)
, (27131, 'Pitsburg', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010ce910381268fe43402e1ad764321f55c0, 388, 1, @CurrentDateTime, @EndOfTime)
, (27132, 'Pittman', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cef80a1fdfeff3c4091200148126954c0, 180, 1, @CurrentDateTime, @EndOfTime)
, (27133, 'Pittman', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cd5db55fe6bfc40407267cb5edb0a55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27134, 'Pittman Center', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c17128b732fe14140bbdd81f057d954c0, 502, 1, @CurrentDateTime, @EndOfTime)
, (27135, 'Pitts', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c3b9ee0acd2f13f40d44fee2d9be254c0, 320, 1, @CurrentDateTime, @EndOfTime)
, (27136, 'Pittsboro', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cef6a03c12ddc4140d30847da57cb53c0, 3743, 1, @CurrentDateTime, @EndOfTime)
, (27137, 'Pittsboro', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cf93e66b15ef840404c3ed1d09a5556c0, 202, 1, @CurrentDateTime, @EndOfTime)
, (27138, 'Pittsboro', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c1fb86f5a95ee43405d267964e29d55c0, 2928, 1, @CurrentDateTime, @EndOfTime)
, (27139, 'Pittsburg', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cee18688874e342405f0773605e3656c0, 572, 1, @CurrentDateTime, @EndOfTime)
, (27140, 'Pittsburg', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c23f9a5d997b442403e3f8c101ead57c0, 20233, 1, @CurrentDateTime, @EndOfTime)
, (27141, 'Pittsburg', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c9d4672ebc95b41404b0f1fe5ebf757c0, 207, 1, @CurrentDateTime, @EndOfTime)
, (27142, 'Pittsburg', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c7e0860b994034340f619619b9e785ec0, 63264, 1, @CurrentDateTime, @EndOfTime)
, (27143, 'Pittsburg', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c53ef0456697f4040d2dff027cfbd57c0, 4497, 1, @CurrentDateTime, @EndOfTime)
, (27144, 'Pittsburg', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010ca6badb508c864640e15927d30dd951c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27145, 'Pittsburgh', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c3de7b86466384440ffa14f9abcff53c0, 305704, 1, @CurrentDateTime, @EndOfTime)
, (27146, 'Pittsfield', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c9d024f102b64464043b92352895851c0, 3150, 1, @CurrentDateTime, @EndOfTime)
, (27147, 'Pittsfield', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010c9232f32e28a74540dfef6140c0d451c0, 1576, 1, @CurrentDateTime, @EndOfTime)
, (27148, 'Pittsfield', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c74b7465f9c394540e5c06158b44f52c0, 44737, 1, @CurrentDateTime, @EndOfTime)
, (27149, 'Pittsfield', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ccd560339cdcd4340ea03c93b87b356c0, 4576, 1, @CurrentDateTime, @EndOfTime)
, (27150, 'Pittsfield', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c0fb9196ec05145407702507b00d252c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27151, 'Pittsfield', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010c438aa658dae24540c75e9445063452c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27152, 'Pittsfield', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c3046c950ba4c4640532a3cc3af0f56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27153, 'Pittsford', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010ced40423976da4540b5595073cd4152c0, 740, 1, @CurrentDateTime, @EndOfTime)
, (27154, 'Pittsford', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c64b4e963998b4540a6c28eb5f56053c0, 1355, 1, @CurrentDateTime, @EndOfTime)
, (27155, 'Pittston', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c012ac187b7a944407bb07be184f252c0, 7739, 1, @CurrentDateTime, @EndOfTime)
, (27156, 'Pittston', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c576941de611c4640ef5701be5b7051c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27157, 'Pittstown', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010ccd4e50d4e36a45403b35971b0c5f52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27158, 'Pittsview', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c00b0952b17184040e3fdb8fd724a55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27159, 'Pittsville', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c1150864fdf6c43406af40fc75f7f57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27160, 'Pittsville', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cc19f2b5b3538464075779d0df98756c0, 874, 1, @CurrentDateTime, @EndOfTime)
, (27161, 'Pittsville', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c6f8445459c3243402187d2286eda52c0, 1417, 1, @CurrentDateTime, @EndOfTime)
, (27162, 'Pittwood', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cf99683ea306e44401169c0c5afee55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27163, 'Pixley', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cd9c644eff9fb414043cbba7facd25dc0, 3310, 1, @CurrentDateTime, @EndOfTime)
, (27164, 'Placedo', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c2480f67efeb03c40a1140896fe3458c0, 692, 1, @CurrentDateTime, @EndOfTime)
, (27165, 'Placentia', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010ccf6d1d77a5ef404063410697b3775dc0, 50533, 1, @CurrentDateTime, @EndOfTime)
, (27166, 'Placer', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c3c404173e7504540fa884e852ed45ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27167, 'Placerville', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c322bca5b645d43408196ae601b335ec0, 10389, 1, @CurrentDateTime, @EndOfTime)
, (27168, 'Placerville', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c649b0aa7bbf8454062d68ba19cfc5cc0, 53, 1, @CurrentDateTime, @EndOfTime)
, (27169, 'Placerville', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010cd1d84ddf210243405200d6f46a035bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27170, 'Placid', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c0dc7f31950533f40e49299c1cecb58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27171, 'Placid Lakes', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c3d96e3bace3d3b40be58ce940c5a54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27172, 'Placida', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c15d742da10d53a40a8fc10c0f29054c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27173, 'Placitas', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c905f895121554040214729d7caca5ac0, 576, 1, @CurrentDateTime, @EndOfTime)
, (27174, 'Placitas', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c80f0a1444ba7414029c5330d2f9b5ac0, 4977, 1, @CurrentDateTime, @EndOfTime)
, (27175, 'Plain', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c22cbdd42b2a345405c2b908fcc8256c0, 773, 1, @CurrentDateTime, @EndOfTime)
, (27176, 'Plain', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c50db2b989de147401bab8372112a5ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27177, 'Plain City', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c94e23ecd24a64440942ccce781055cc0, 5476, 1, @CurrentDateTime, @EndOfTime)
, (27178, 'Plain City', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c84674293c40d44404a7a185a1dd154c0, 4225, 1, @CurrentDateTime, @EndOfTime)
, (27179, 'Plain Dealing', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cddec0f94db734040f3fba314996c57c0, 1015, 1, @CurrentDateTime, @EndOfTime)
, (27180, 'Plain View', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010ccc50cbc5ce9f41409053cfdd89a353c0, 1961, 1, @CurrentDateTime, @EndOfTime)
, (27181, 'Plainedge', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c18586c38d15b444017da9486f55e52c0, 8817, 1, @CurrentDateTime, @EndOfTime)
, (27182, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ca6b4fe96001a4440e0f7ca178f5253c0, 399, 1, @CurrentDateTime, @EndOfTime)
, (27183, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c2d0abb287a6c4540402dab55602257c0, 436, 1, @CurrentDateTime, @EndOfTime)
, (27184, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cf9aef7d15f1b464034dcdb88825f56c0, 862, 1, @CurrentDateTime, @EndOfTime)
, (27185, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010ce583f9861d51444008b02369129a52c0, 49808, 1, @CurrentDateTime, @EndOfTime)
, (27186, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c71f8eea023da43406f505667909955c0, 27631, 1, @CurrentDateTime, @EndOfTime)
, (27187, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c8ffe976bd11a4440e7ebe86e0d6e54c0, 157, 1, @CurrentDateTime, @EndOfTime)
, (27188, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c86764eb340d044401199a8940d0d56c0, 39581, 1, @CurrentDateTime, @EndOfTime)
, (27189, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010c0b838d46992346401b3f9ea74b1b52c0, 401, 1, @CurrentDateTime, @EndOfTime)
, (27190, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010c516452e861c44540a450bb04cc1652c0, 205, 1, @CurrentDateTime, @EndOfTime)
, (27191, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c9f1628cef62440409ce50d8b2cc754c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27192, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010c24134b2597d64440f81c588e90fa51c0, 2557, 1, @CurrentDateTime, @EndOfTime)
, (27193, 'Plainfield', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c8187b36cf74145406536c824a33a52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27194, 'Plains', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c943fceead3683b400a922d81ca4b54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27195, 'Plains', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cce14dff53ea3444035ed629a69f652c0, 4335, 1, @CurrentDateTime, @EndOfTime)
, (27196, 'Plains', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c276893c327984040ddbc27c5fdb459c0, 1481, 1, @CurrentDateTime, @EndOfTime)
, (27197, 'Plains', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010cbfd6a546e8ba4740f3efe9a081b85cc0, 1048, 1, @CurrentDateTime, @EndOfTime)
, (27198, 'Plains', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c8a33d0c65b044040545b45da211955c0, 776, 1, @CurrentDateTime, @EndOfTime)
, (27199, 'Plains', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c8f15a17d51a1424057f95404ee2559c0, 1146, 1, @CurrentDateTime, @EndOfTime)
, (27200, 'Plainsboro', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c0c530031ae2a4440ceb925836da652c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27201, 'Plainview', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010cfb26a83c154d4640a42b22d4568a59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27202, 'Plainview', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c4b411251a7174140bd3cf8e43c6d59c0, 22194, 1, @CurrentDateTime, @EndOfTime)
, (27203, 'Plainview', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c3d60c37872124240c1142f6093c85dc0, 945, 1, @CurrentDateTime, @EndOfTime)
, (27204, 'Plainview', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c48c55ad7c32c45409aa8ef46b07258c0, 1246, 1, @CurrentDateTime, @EndOfTime)
, (27205, 'Plainview', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010cf1bbe9961d1546406279a1cafa0a57c0, 3340, 1, @CurrentDateTime, @EndOfTime)
, (27206, 'Plainview', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c6e5d20f763634440b29b19fde85d52c0, 26217, 1, @CurrentDateTime, @EndOfTime)
, (27207, 'Plainview', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010cef703b342c174240eed2e17cc5f254c0, 2125, 1, @CurrentDateTime, @EndOfTime)
, (27208, 'Plainview', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cfd9d9218a97e4140f0eb76ac085357c0, 608, 1, @CurrentDateTime, @EndOfTime)
, (27209, 'Plainville', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cfc3905f9d9334140ab3c26f7604255c0, 313, 1, @CurrentDateTime, @EndOfTime)
, (27210, 'Plainville', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c23cb93b597e4434071a312e8ddcb56c0, 264, 1, @CurrentDateTime, @EndOfTime)
, (27211, 'Plainville', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c11f3f631306743402216d632bec955c0, 476, 1, @CurrentDateTime, @EndOfTime)
, (27212, 'Plainville', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c4de83fb50b9e4340a2c739fb14d358c0, 1903, 1, @CurrentDateTime, @EndOfTime)
, (27213, 'Plainville', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010c9ede7b6e57d64440dbf74d06ec3652c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27214, 'Plainville', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010cb83f72c68b004540afe133234dd551c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27215, 'Plainville', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c1d5fd61fbcda45405eba490c027456c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27216, 'Plainwell', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c4749fe1653384540a3b08ba2876955c0, 3804, 1, @CurrentDateTime, @EndOfTime)
, (27217, 'Plaistow', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010cfda8e1b6116b45401bf33ae210c651c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27218, 'Planada', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cb4ffa61c38a54240f72f5a9162145ec0, 4584, 1, @CurrentDateTime, @EndOfTime)
, (27219, 'Plandome', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010ce3fc4d2844674440aa1a738d056d52c0, 1349, 1, @CurrentDateTime, @EndOfTime)
, (27220, 'Plankinton', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c4e64e60297db4540e2900da40b9f58c0, 707, 1, @CurrentDateTime, @EndOfTime)
, (27221, 'Plano', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cb5c0c359b66044403ece3461fb4257c0, 70, 1, @CurrentDateTime, @EndOfTime)
, (27222, 'Plano', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c27c522e1d6d44440b233e0875e2256c0, 10856, 1, @CurrentDateTime, @EndOfTime)
, (27223, 'Plano', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cd0c4854dae704240fa66f6d4c59a55c0, 1117, 1, @CurrentDateTime, @EndOfTime)
, (27224, 'Plano', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c90c6fc378a8240404de9aa8aba2c58c0, 259841, 1, @CurrentDateTime, @EndOfTime)
, (27225, 'Plant City', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c36261f16c5043c401e99582a398754c0, 34721, 1, @CurrentDateTime, @EndOfTime)
, (27226, 'Plantation', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cc16b3c7da9203a401da55c2beb0e54c0, 84955, 1, @CurrentDateTime, @EndOfTime)
, (27227, 'Plantation', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c0c8a308f462443406a053c1fd46555c0, 832, 1, @CurrentDateTime, @EndOfTime)
, (27228, 'Plantation Key', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cf436a2b29bfb3840f765de221f2354c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27229, 'Plantersville', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c949746dd18c74040582140e1c7cd53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27230, 'Plantersville', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c1b4cc3f0115440402015b5ea29bb55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27231, 'Plantersville', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c53115d06521b41404af5f818872a56c0, 1155, 1, @CurrentDateTime, @EndOfTime)
, (27232, 'Plaquemine', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cdc51f75c014a3e4090920d5afece56c0, 7119, 1, @CurrentDateTime, @EndOfTime)
, (27233, 'Plaska', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c9a7cb3cd8d4d4140b4aa251d652959c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27234, 'Plaster City', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cc515bc8d72654040d18f2b9af3f65cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27235, 'Plat', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cff9254a6989a454098022db8fa1156c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27236, 'Plata', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c6a053c1f54e03d4072b90bde21015ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27237, 'Platea', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c1d250a88a4f94440836beee8ff1454c0, 430, 1, @CurrentDateTime, @EndOfTime)
, (27238, 'Platina', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c7fac962a072e4440fb58c16f43b95ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27239, 'Platinum', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010ccc834fceab814d40284a9ddb1f3a64c0, 61, 1, @CurrentDateTime, @EndOfTime)
, (27240, 'Platner', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010cff6ecb91df134440a79f26e950c459c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27241, 'Plato', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c13e8b8bf1f634640289023e78e8257c0, 320, 1, @CurrentDateTime, @EndOfTime)
, (27242, 'Plato', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cd5f83bca77c042402638f581640e57c0, 109, 1, @CurrentDateTime, @EndOfTime)
, (27243, 'Plato Center', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c884446ac6a034540b566d075861b56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27244, 'Platte', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c1483763d87b14540cabed0c80cb658c0, 1230, 1, @CurrentDateTime, @EndOfTime)
, (27245, 'Platte Center', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c56dee929cdc44440dea40e97415f58c0, 336, 1, @CurrentDateTime, @EndOfTime)
, (27246, 'Platte City', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cc0f91e3f65af434085f9e1d613b257c0, 4691, 1, @CurrentDateTime, @EndOfTime)
, (27247, 'Platte Woods', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c7be0be69559d43408198840b79a957c0, 385, 1, @CurrentDateTime, @EndOfTime)
, (27248, 'Plattekill', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c051c9d4e0dcf4440fad170cadc8452c0, 1260, 1, @CurrentDateTime, @EndOfTime)
, (27249, 'Platteville', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c040473f4f85d454008f87f1f9f9e56c0, 11224, 1, @CurrentDateTime, @EndOfTime)
, (27250, 'Platteville', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c8159468f841b44406f7319eda7345ac0, 2485, 1, @CurrentDateTime, @EndOfTime)
, (27251, 'Plattsburg', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cd9cb5b1a64c84340903af020ac9c57c0, 2319, 1, @CurrentDateTime, @EndOfTime)
, (27252, 'Plattsburgh', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cd2bbc2cc88594640fc7c4a84fc5c52c0, 19989, 1, @CurrentDateTime, @EndOfTime)
, (27253, 'Plattsmouth', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c23884e2a75814440b2e0d97976f857c0, 6502, 1, @CurrentDateTime, @EndOfTime)
, (27254, 'Plattville', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ccf30b5a50ec4444017d4b7cc691856c0, 242, 1, @CurrentDateTime, @EndOfTime)
, (27255, 'Plaucheville', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c565cc1db28f73e407509e297d5fe56c0, 248, 1, @CurrentDateTime, @EndOfTime)
, (27256, 'Playa Fortuna', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c9f31dd3532613240880c50bfb06f50c0, 1690, 1, @CurrentDateTime, @EndOfTime)
, (27257, 'Playas', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c9a492fc5b0ea3f405dac037b27225bc0, 74, 1, @CurrentDateTime, @EndOfTime)
, (27258, 'Playita', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c430fc699700b324002d94697127a50c0, 1558, 1, @CurrentDateTime, @EndOfTime)
, (27259, 'Playita Cortada', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010ce03197af26fc31401700998c199c50c0, 1731, 1, @CurrentDateTime, @EndOfTime)
, (27260, 'Plaza', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c684de262fba8474045a3964190585dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27261, 'Plaza', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010c551dcdec4e0348408efc6607817d59c0, 171, 1, @CurrentDateTime, @EndOfTime)
, (27262, 'Pleak', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c43024697377d3d40c32165d5b1f357c0, 1044, 1, @CurrentDateTime, @EndOfTime)
, (27263, 'Pleasant City', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c1378cce5abf34340cb6d56d8e76254c0, 447, 1, @CurrentDateTime, @EndOfTime)
, (27264, 'Pleasant Dale', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cb24ae9995e654440448f73f6a93b58c0, 205, 1, @CurrentDateTime, @EndOfTime)
, (27265, 'Pleasant Gap', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c144a157b1e6f444034a14962c96f53c0, 2879, 1, @CurrentDateTime, @EndOfTime)
, (27266, 'Pleasant Gap', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cf442f0ae69fe4040e8b0b101476155c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27267, 'Pleasant Garden', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c5e11fc6f25fb41405835adb9c8f053c0, 4489, 1, @CurrentDateTime, @EndOfTime)
, (27268, 'Pleasant Green', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c06a799492f674340275f1ad09c3d57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27269, 'Pleasant Grove', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c6db9e985f10f4440baddcb7df29552c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27270, 'Pleasant Grove', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cc320faff826d43406db87eb042d157c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27271, 'Pleasant Grove', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c6336b7f8ca784140fc20263cfc7a55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27272, 'Pleasant Grove', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c99ef856e9b2e44406cb2463d44ef5bc0, 33509, 1, @CurrentDateTime, @EndOfTime)
, (27273, 'Pleasant Grove', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c15e46723d7be4040a0cf36ed18be55c0, 10110, 1, @CurrentDateTime, @EndOfTime)
, (27274, 'Pleasant Grove', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c36f0598ddbf9434046a5c7a5607d54c0, 1742, 1, @CurrentDateTime, @EndOfTime)
, (27275, 'Pleasant Grove', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c0e21f829d87b4440a4236f6f6dd256c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27276, 'Pleasant Groves', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cf5f3a622155e414005f7a864258d55c0, 420, 1, @CurrentDateTime, @EndOfTime)
, (27277, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c0282397afcfc4140422b8b1d684c55c0, 563, 1, @CurrentDateTime, @EndOfTime)
, (27278, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c505b7e3be4d13f4094d85a04eb6057c0, 723, 1, @CurrentDateTime, @EndOfTime)
, (27279, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cfc4c62b59e06444078e052840a1655c0, 1200, 1, @CurrentDateTime, @EndOfTime)
, (27280, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c26570cb2c0b84340f2446ba0d4b756c0, 966, 1, @CurrentDateTime, @EndOfTime)
, (27281, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c49b5f40df120424031067bb8893854c0, 878, 1, @CurrentDateTime, @EndOfTime)
, (27282, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c7325a71bcd64434058152bb43d9157c0, 8113, 1, @CurrentDateTime, @EndOfTime)
, (27283, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c0bac2d86bcca44405f9f94a4466157c0, 8785, 1, @CurrentDateTime, @EndOfTime)
, (27284, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c6827de5c57f94240f10d2a16e4835ec0, 33152, 1, @CurrentDateTime, @EndOfTime)
, (27285, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c622aa2cb40023f40e73004a50db357c0, 522, 1, @CurrentDateTime, @EndOfTime)
, (27286, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c1cba34d99a42414095b2b1b7b9c459c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27287, 'Pleasant Hill', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c95d233bdc4ce4740028c1d43367a5ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27288, 'Pleasant Hills', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c53db3cc4f52a444098d41a947afd53c0, 8268, 1, @CurrentDateTime, @EndOfTime)
, (27289, 'Pleasant Hope', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010ce86b96cb46bb4240b97b6fc2735157c0, 614, 1, @CurrentDateTime, @EndOfTime)
, (27290, 'Pleasant Lake', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010cb8bbbd5aa4c94440fc6eba65074155c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27291, 'Pleasant Lake', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c91eae005b6bf464067c581a1589257c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27292, 'Pleasant Mound', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c860d05227a6e434001158e20955256c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27293, 'Pleasant Plain', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cb5d5f6c0d8924440e512a2d7faf656c0, 93, 1, @CurrentDateTime, @EndOfTime)
, (27294, 'Pleasant Plain', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c2f490ad1c6a3434095229e912d0755c0, 154, 1, @CurrentDateTime, @EndOfTime)
, (27295, 'Pleasant Plains', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cd748b7cab8ef4340a6385849f57a56c0, 802, 1, @CurrentDateTime, @EndOfTime)
, (27296, 'Pleasant Plains', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c2f19220269c641409c0a027514e856c0, 349, 1, @CurrentDateTime, @EndOfTime)
, (27297, 'Pleasant Plains', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cfcd2911271004440c79e3d97a98d52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27298, 'Pleasant Prairie', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cdadce22bcb464540d5acd804bdfb55c0, 19719, 1, @CurrentDateTime, @EndOfTime)
, (27299, 'Pleasant Ridge', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010ce44d7e8b4e3c4540db8bc3f418c954c0, 2526, 1, @CurrentDateTime, @EndOfTime)
, (27300, 'Pleasant Site', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cb010678f6145414030b6b52a2e0456c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27301, 'Pleasant Unity', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cce339b6ca81e444001af850fdbdc53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27302, 'Pleasant Valley', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c0b49c1ae813044405c72dc291deb53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27303, 'Pleasant Valley', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cda4f6b3fbe744340068ce4e1735e53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27304, 'Pleasant Valley', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ce02d90a0f8794040158035bd7a2458c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27305, 'Pleasant Valley', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cf33570ac30f84040243ceb64baa558c0, 336, 1, @CurrentDateTime, @EndOfTime)
, (27306, 'Pleasant Valley', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cb5cf19074ddf4440872293428f7452c0, 1145, 1, @CurrentDateTime, @EndOfTime)
, (27307, 'Pleasant Valley', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c1c5025b9b29b4340c7f65ad0fb9e57c0, 2961, 1, @CurrentDateTime, @EndOfTime)
, (27308, 'Pleasant Valley', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cf8e4bc5a49ba4340f1564c5b120954c0, 3149, 1, @CurrentDateTime, @EndOfTime)
, (27309, 'Pleasant View', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010cffc5d8ae75324240c712d6c658c255c0, 4149, 1, @CurrentDateTime, @EndOfTime)
, (27310, 'Pleasant View', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c1ccf6740bda844404e6f35a17fff5bc0, 7979, 1, @CurrentDateTime, @EndOfTime)
, (27311, 'Pleasant View', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c4293c49272cb4240f8e8c369f7305bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27312, 'Pleasant View', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c211d1ec2f8dd4340fc4e3860fc4a5ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27313, 'Pleasant View', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c9c1fda22c4564240b988940b3a0855c0, 350, 1, @CurrentDateTime, @EndOfTime)
, (27314, 'Pleasant View', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c77aede97e9d443402b95a6f7437c55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27315, 'Pleasanton', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c2515d742daa240409568249ddc375bc0, 106, 1, @CurrentDateTime, @EndOfTime)
, (27316, 'Pleasanton', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cceeca98bcad44240158035bdfa775ec0, 70285, 1, @CurrentDateTime, @EndOfTime)
, (27317, 'Pleasanton', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c2ee3a6069af73c40189fb8d2a19e58c0, 8934, 1, @CurrentDateTime, @EndOfTime)
, (27318, 'Pleasanton', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c98c28366d77b4440c095ecd888c558c0, 341, 1, @CurrentDateTime, @EndOfTime)
, (27319, 'Pleasanton', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c7eb0e7c64f4a4440bdc804fc9a6f57c0, 49, 1, @CurrentDateTime, @EndOfTime)
, (27320, 'Pleasanton', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cae06cd53c2164340afa6fcb586ad57c0, 1216, 1, @CurrentDateTime, @EndOfTime)
, (27321, 'Pleasantville', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c5078bfc062b1444016f88a6e3d5157c0, 1694, 1, @CurrentDateTime, @EndOfTime)
, (27322, 'Pleasantville', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c3b408b0002914440b20ddc81ba7252c0, 7019, 1, @CurrentDateTime, @EndOfTime)
, (27323, 'Pleasantville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c1fbfb7e9cfcb4440c50dae6f16e553c0, 892, 1, @CurrentDateTime, @EndOfTime)
, (27324, 'Pleasantville', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c1f5be03ce6b1434054ae4be889a152c0, 20249, 1, @CurrentDateTime, @EndOfTime)
, (27325, 'Pleasantville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c4736fc130117444062e822cf3fa753c0, 198, 1, @CurrentDateTime, @EndOfTime)
, (27326, 'Pleasantville', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c6f5fac14a7e74340f9e81e236aa154c0, 960, 1, @CurrentDateTime, @EndOfTime)
, (27327, 'Pleasantville', [DataLoadSimulation].[GetStateProvinceID] ('DE'), 0xe6100000010c31009efefdd44340bc010b0511e852c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27328, 'Pleasure Ridge Park', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c4006e1c09a12434050508a56ee7655c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27329, 'Pleasureville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c1a1e56139fff434030325c78392d53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27330, 'Pleasureville', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010ca64ef685462c4340641d33f55f4755c0, 834, 1, @CurrentDateTime, @EndOfTime)
, (27331, 'Pledger', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c08ed3081b62e3d402812a7ee25fa57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27332, 'Plentywood', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c4f09e3022b634840f4f8bd4dff235ac0, 1734, 1, @CurrentDateTime, @EndOfTime)
, (27333, 'Plessis', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c9951e2299a2246401ebef15aaef652c0, 164, 1, @CurrentDateTime, @EndOfTime)
, (27334, 'Pletcher', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010ce68ea3def8594040993567333db255c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27335, 'Plettenberg', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c79c5f8d5c1e03e40c984a97782df56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27336, 'Plevna', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cf2237ec51a7b4140c7c9b381aa9a55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27337, 'Plevna', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c721b6899a0fc4340c2a15cbf850557c0, 21, 1, @CurrentDateTime, @EndOfTime)
, (27338, 'Plevna', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c815f7e0283354740423976f54f215ac0, 162, 1, @CurrentDateTime, @EndOfTime)
, (27339, 'Plevna', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c607e5d3c72fc42405cddfb65c19358c0, 98, 1, @CurrentDateTime, @EndOfTime)
, (27340, 'Plover', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cfeb627486c70454097033dd4b6a757c0, 77, 1, @CurrentDateTime, @EndOfTime)
, (27341, 'Plover', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cb8e287ef693a4640e272bc02d16256c0, 12123, 1, @CurrentDateTime, @EndOfTime)
, (27342, 'Pluckemin', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c6475abe7a4524440c0249529e6a852c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27343, 'Plum', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cdc18f1530b40444028c984a9f7ef53c0, 27126, 1, @CurrentDateTime, @EndOfTime)
, (27344, 'Plum Branch', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c5971056fa3ec4040c5ff1d51a19054c0, 82, 1, @CurrentDateTime, @EndOfTime)
, (27345, 'Plum City', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c8b29a27087504640660f5949500c57c0, 599, 1, @CurrentDateTime, @EndOfTime)
, (27346, 'Plum Grove', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ca75599cef3363e40e477e45913c657c0, 600, 1, @CurrentDateTime, @EndOfTime)
, (27347, 'Plum Springs', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cc0c293275a824240bf1bc17c689855c0, 453, 1, @CurrentDateTime, @EndOfTime)
, (27348, 'Plumas Lake', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c9f115b30a7824340eaa5738fb6635ec0, 5853, 1, @CurrentDateTime, @EndOfTime)
, (27349, 'Plumbsock', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cad35ef93fe9b44403354200eedaa52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27350, 'Plumerville', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c1f50919e7d944140f9ddcf84012957c0, 826, 1, @CurrentDateTime, @EndOfTime)
, (27351, 'Plummer', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c1c8f6335a7f44740ba8e2738ab0258c0, 292, 1, @CurrentDateTime, @EndOfTime)
, (27352, 'Plummer', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010cb9612530e7aa474012cc8756dd385dc0, 1044, 1, @CurrentDateTime, @EndOfTime)
, (27353, 'Plumsteadville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c372e88ed93314440c8f6104361c952c0, 2637, 1, @CurrentDateTime, @EndOfTime)
, (27354, 'Plumville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c6fa69df58465444093b943d48ecb53c0, 307, 1, @CurrentDateTime, @EndOfTime)
, (27355, 'Plumwood', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c6c0723f609014440b9d2212697da54c0, 319, 1, @CurrentDateTime, @EndOfTime)
, (27356, 'Plush', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010cdd161ba9ad34454079d44e83d8f95dc0, 57, 1, @CurrentDateTime, @EndOfTime)
, (27357, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010cc245387705d644401b7c0679624352c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27358, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c26ad534035b13c40eb909be1066354c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27359, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010ce4897b873662464094e1d3f7754d51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27360, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cf5fcc45cad3d434069519fe40e365ec0, 1005, 1, @CurrentDateTime, @EndOfTime)
, (27361, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010c39e16fc50ff04440f547bd4c39095cc0, 414, 1, @CurrentDateTime, @EndOfTime)
, (27362, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c86522058fa4e45407619fed38de652c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27363, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cc79dd2c1fa3443401f605221431558c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27364, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010c9a29087998c44540ae7e11d92c2e52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27365, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c960bf038a0f74640dbfae93f6bd65dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27366, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cdd1e29c7094243406257491a127654c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27367, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cf44d3f4dd2df4540c03c64ca87fe55c0, 8445, 1, @CurrentDateTime, @EndOfTime)
, (27368, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010ca1e4c40daefa444044e0a359b4aa51c0, 7494, 1, @CurrentDateTime, @EndOfTime)
, (27369, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c18343edd8a2f454071091bf917de54c0, 9132, 1, @CurrentDateTime, @EndOfTime)
, (27370, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010cbac381ebe5e04540a131ee610aec51c0, 4456, 1, @CurrentDateTime, @EndOfTime)
, (27371, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ccba3761ac49e4440b819130775fc52c0, 5951, 1, @CurrentDateTime, @EndOfTime)
, (27372, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c9d7c1fb35881464087a17a10275d57c0, 70576, 1, @CurrentDateTime, @EndOfTime)
, (27373, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c943df83f769f45404161f5ecde4757c0, 382, 1, @CurrentDateTime, @EndOfTime)
, (27374, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c96cb46e7fcab44405fea8c94d29355c0, 10033, 1, @CurrentDateTime, @EndOfTime)
, (27375, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c1be61599ca264440c8b9a8714a3f58c0, 409, 1, @CurrentDateTime, @EndOfTime)
, (27376, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c3ff0e7ca562544406551d845d1ba56c0, 505, 1, @CurrentDateTime, @EndOfTime)
, (27377, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c02c41330707f4440043f051bb2aa54c0, 1857, 1, @CurrentDateTime, @EndOfTime)
, (27378, 'Plymouth', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c7d602239f4ee41406bef5355e82f53c0, 3878, 1, @CurrentDateTime, @EndOfTime)
, (27379, 'Plymouth Meeting', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cc9aa0837190d4440fe1076e58ed152c0, 6177, 1, @CurrentDateTime, @EndOfTime)
, (27380, 'Plympton', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010cc30078faf7f9444001a83d8020b451c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27381, 'Poag', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c2254a9d903664340363003df7e8256c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27382, 'Poca', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cf4797bc6743c434050ad19741d7454c0, 974, 1, @CurrentDateTime, @EndOfTime)
, (27383, 'Pocahontas', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c81334289e0a642406bffb91ebb5554c0, 389, 1, @CurrentDateTime, @EndOfTime)
, (27384, 'Pocahontas', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c76dd00d8255e4540468e194dd3aa57c0, 1789, 1, @CurrentDateTime, @EndOfTime)
, (27385, 'Pocahontas', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c58c4550a26c04240aea53627e56856c0, 114, 1, @CurrentDateTime, @EndOfTime)
, (27386, 'Pocahontas', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cfeedb25f77214240f1f274ae28be56c0, 6608, 1, @CurrentDateTime, @EndOfTime)
, (27387, 'Pocahontas', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cac68bd29f66943400fa441c0906256c0, 784, 1, @CurrentDateTime, @EndOfTime)
, (27388, 'Pocahontas', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c7fdb1324b63c40407144ad1f519256c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27389, 'Pocalla Springs', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c12ead8f797ef4040ba8b8bfeab1654c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27390, 'Pocasset', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c0dcb6da34b99414043d0522b7c7e58c0, 156, 1, @CurrentDateTime, @EndOfTime)
, (27391, 'Pocasset', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c1b79c5f8d5d744404aecdade6ea751c0, 2851, 1, @CurrentDateTime, @EndOfTime)
, (27392, 'Pocatalico', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c66f2727dc43e4340dfc5562b6e6954c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27393, 'Pocatello', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c3873fedc866f45408d4fb7a2831c5cc0, 54255, 1, @CurrentDateTime, @EndOfTime)
, (27394, 'Pocola', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c4a4de485199e4140c79bc7241da057c0, 4056, 1, @CurrentDateTime, @EndOfTime)
, (27395, 'Pocomoke City', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c594634cbaf0943400211e2ca59e452c0, 4184, 1, @CurrentDateTime, @EndOfTime)
, (27396, 'Pocono Pines', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cb519a721aa8d444067f73f1b14dd52c0, 1409, 1, @CurrentDateTime, @EndOfTime)
, (27397, 'Pocopson', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c151dc9e53ff343408ebd288b0ce852c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27398, 'Poestenkill', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cf4c9e59a5d584540ef0802bf216452c0, 1061, 1, @CurrentDateTime, @EndOfTime)
, (27399, 'Pohick', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c3d320c0ee55a43404ef454e2954c53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27400, 'Poinciana', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c0b54104dea233c40fdd24785565d54c0, 53193, 1, @CurrentDateTime, @EndOfTime)
, (27401, 'Poindexter', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cc71e903af0374340eef77aadba1355c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27402, 'Point', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010ccfc0c8cb9a544040728687d5c41157c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27403, 'Point', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c6ab702af3b774040dd0e6844c4f757c0, 820, 1, @CurrentDateTime, @EndOfTime)
, (27404, 'Point Arena', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cc9552c7e537443403cb02d4d5bec5ec0, 449, 1, @CurrentDateTime, @EndOfTime)
, (27405, 'Point Baker', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c9ee0acd2272d4c40d8b56224e0b360c0, 15, 1, @CurrentDateTime, @EndOfTime)
, (27406, 'Point Baker', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c58fe7c5bb0b03e404b9352d06dc355c0, 2991, 1, @CurrentDateTime, @EndOfTime)
, (27407, 'Point Blank', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c9f7422c154bf3e40affe19efd8cd57c0, 688, 1, @CurrentDateTime, @EndOfTime)
, (27408, 'Point Blue', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c06f126648ca03e401a3ca7b4591357c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27409, 'Point Cedar', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010caaaff897ee2941406c4a6881ac5357c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27410, 'Point Clear', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c5f0a0f9a5d793e401133a083d3fa55c0, 2125, 1, @CurrentDateTime, @EndOfTime)
, (27411, 'Point Comfort', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cdb0940ed01ae3c40a2bd5532db2358c0, 737, 1, @CurrentDateTime, @EndOfTime)
, (27412, 'Point Harbor', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cb4603d49150a42406c1dc132dbf252c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27413, 'Point Hope', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c7261eea44f165140a59421d882d764c0, 674, 1, @CurrentDateTime, @EndOfTime)
, (27414, 'Point Isabel', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010cf7c54a71fa3544400d7f9763c37455c0, 91, 1, @CurrentDateTime, @EndOfTime)
, (27415, 'Point Lay', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010ca5f9635a9b6f5140363d2828456064c0, 189, 1, @CurrentDateTime, @EndOfTime)
, (27416, 'Point Lookout', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c1e8b6d52d14b4440df5339ed296552c0, 1219, 1, @CurrentDateTime, @EndOfTime)
, (27417, 'Point Marion', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cf5a8537996de4340815ce2c883f953c0, 1159, 1, @CurrentDateTime, @EndOfTime)
, (27418, 'Point of Rocks', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c8367e7d951a343403b9f4b82816253c0, 1466, 1, @CurrentDateTime, @EndOfTime)
, (27419, 'Point of Rocks', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010c6e78301812d74440e1606f6248325bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27420, 'Point Pleasant', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c347b455ca50a4440069497465d8452c0, 18392, 1, @CurrentDateTime, @EndOfTime)
, (27421, 'Point Pleasant', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c58930266196c434041898510c68854c0, 4350, 1, @CurrentDateTime, @EndOfTime)
, (27422, 'Point Pleasant Beach', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c6642dd51ad0b44400f006608118352c0, 4665, 1, @CurrentDateTime, @EndOfTime)
, (27423, 'Point Reyes Station', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c9d7fbbecd70843409afe36d5a4b35ec0, 848, 1, @CurrentDateTime, @EndOfTime)
, (27424, 'Point Roberts', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010ce906af02217e48400dfca886fdc45ec0, 1314, 1, @CurrentDateTime, @EndOfTime)
, (27425, 'Point Venture', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cd32c75351e613e401bf1097ec07f58c0, 800, 1, @CurrentDateTime, @EndOfTime)
, (27426, 'Pointe la Hache', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c78561c188a933d40eaca0cc0ab7256c0, 187, 1, @CurrentDateTime, @EndOfTime)
, (27427, 'Pointe Aux Pins', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010ccc33e5f9c2dd4640ea036e82941e55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27428, 'Pojoaque', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cf960be6147f241409e4fd31d7a815ac0, 1907, 1, @CurrentDateTime, @EndOfTime)
, (27429, 'Polacca', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cfabe130e18eb4140b2f105d26a985bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27430, 'Poland', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010cfc5b5da9c2074640e17f2bd9319951c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27431, 'Poland', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c175cbdd419834440cd2ecece582754c0, 2555, 1, @CurrentDateTime, @EndOfTime)
, (27432, 'Poland', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cbcd52945e19c454093ecc7dcebc352c0, 508, 1, @CurrentDateTime, @EndOfTime)
, (27433, 'Polar', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c436678fd93954640e81b2cf75d3f56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27434, 'Polaris', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c064c3b9050af4640cfb238ada5475cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27435, 'Pole Ojea', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010cfac1af4797f931405b5947fad9cb50c0, 1695, 1, @CurrentDateTime, @EndOfTime)
, (27436, 'Polebridge', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010ce9e802a8f36148404b7842af3f925cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27437, 'Polk', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c094be1e6f9ae4440990b016578fb53c0, 816, 1, @CurrentDateTime, @EndOfTime)
, (27438, 'Polk', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cf6c7c562e57844402ef87eb4c98d54c0, 336, 1, @CurrentDateTime, @EndOfTime)
, (27439, 'Polk', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c7ddb5db1d08944404f7974232c7258c0, 322, 1, @CurrentDateTime, @EndOfTime)
, (27440, 'Polk City', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c0c8a8b48b92e3c40acbd99e2bb7454c0, 1562, 1, @CurrentDateTime, @EndOfTime)
, (27441, 'Polk City', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cff733d76bce24440b3637ec9a16d57c0, 3418, 1, @CurrentDateTime, @EndOfTime)
, (27442, 'Polkton', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cfd5470d3fa804140259c7175db0c54c0, 3375, 1, @CurrentDateTime, @EndOfTime)
, (27443, 'Polkville', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c6d20b825cd184040b8a51f1e536c56c0, 833, 1, @CurrentDateTime, @EndOfTime)
, (27444, 'Polkville', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c4173e7d374b54140dbbfb2d2246954c0, 545, 1, @CurrentDateTime, @EndOfTime)
, (27445, 'Pollard', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c63c8fb8227374240eec627092e9156c0, 222, 1, @CurrentDateTime, @EndOfTime)
, (27446, 'Pollard', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cc0e556adf1063f401b2ac6f91bcb55c0, 137, 1, @CurrentDateTime, @EndOfTime)
, (27447, 'Pollock', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c18f5ff6096863f40f351eba20d1a57c0, 469, 1, @CurrentDateTime, @EndOfTime)
, (27448, 'Pollock', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c7a62e7b7f92d4440df7a03826f4557c0, 89, 1, @CurrentDateTime, @EndOfTime)
, (27449, 'Pollock', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010cf894528660f34640c4938213761259c0, 241, 1, @CurrentDateTime, @EndOfTime)
, (27450, 'Pollock', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010cded9684afca746405ca56032fa165dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27451, 'Pollock Pines', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c2b99ad0672614340f5a276bf8a255ec0, 6871, 1, @CurrentDateTime, @EndOfTime)
, (27452, 'Pollocksville', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c54878153c4804140bdd17def254e53c0, 311, 1, @CurrentDateTime, @EndOfTime)
, (27453, 'Pollok', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c17df066b52723f4047212466d1b757c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27454, 'Polo', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c541f48de39fe44404a12dfe4126556c0, 2355, 1, @CurrentDateTime, @EndOfTime)
, (27455, 'Polo', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cdc6c077eafc6434033839d079c8257c0, 575, 1, @CurrentDateTime, @EndOfTime)
, (27456, 'Polonia', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cb8d4f7d0f4484640ea08e066715a56c0, 526, 1, @CurrentDateTime, @EndOfTime)
, (27457, 'Polson', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010cdc92663dc6d8474013888d68718a5cc0, 4488, 1, @CurrentDateTime, @EndOfTime)
, (27458, 'Polvadera', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c264bf784361a414013776110fdba5ac0, 269, 1, @CurrentDateTime, @EndOfTime)
, (27459, 'Pomaria', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cdc59057b5d22414094a70760de5a54c0, 179, 1, @CurrentDateTime, @EndOfTime)
, (27460, 'Pomeroy', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cfccadead878343402d0b26fe288254c0, 1852, 1, @CurrentDateTime, @EndOfTime)
, (27461, 'Pomeroy', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cd15966118a46454084503981c4ab57c0, 662, 1, @CurrentDateTime, @EndOfTime)
, (27462, 'Pomeroy', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c165d28aac83c4740eb68667792665dc0, 1425, 1, @CurrentDateTime, @EndOfTime)
, (27463, 'Pomeroy', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cdb77fb62a5b841409ee7f461626059c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27464, 'Pomeroy', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c8f1ce90c8c954340a734acf3b9b057c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27465, 'Pomfret', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010cf0c16b9736da45405764cff9042152c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27466, 'Pomfret', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cfb0e3455e6494340e8a04b38f44153c0, 517, 1, @CurrentDateTime, @EndOfTime)
, (27467, 'Pomfret', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010c7f3b3f7be4f244408dff4cce9afd51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27468, 'Pomona', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cb7ff1202036f4240514b732b84fa56c0, 511, 1, @CurrentDateTime, @EndOfTime)
, (27469, 'Pomona', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cba6b64b2130741404cbd135825705dc0, 149058, 1, @CurrentDateTime, @EndOfTime)
, (27470, 'Pomona', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c31f77fc465d04240ac2f5c678d5556c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27471, 'Pomona', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c648ade4ec794434035fcb847000753c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27472, 'Pomona', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c8e5dfd33de4d43407858f2c2e7dc57c0, 832, 1, @CurrentDateTime, @EndOfTime)
, (27473, 'Pomona', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c0a61dadc3dbd4340e966da59cfa452c0, 7124, 1, @CurrentDateTime, @EndOfTime)
, (27474, 'Pomona', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c5d120c8c61954440439259bdc38252c0, 3103, 1, @CurrentDateTime, @EndOfTime)
, (27475, 'Pomona Heights', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010ca6f2d13d46954440491fa974668452c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27476, 'Pomona Park', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010ca4d9e15410803d40c04cca93da6554c0, 912, 1, @CurrentDateTime, @EndOfTime)
, (27477, 'Pomonkey', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c01eec38bcf4d43405afe32ce954453c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27478, 'Pompano Beach', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c5089905fe43c3a404f08782dfc0754c0, 99845, 1, @CurrentDateTime, @EndOfTime)
, (27479, 'Pompano Park', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cb2b8a40f02333a40f2272a1b560d54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27480, 'Pompey', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c2d4723fa10734540df2a99ad060153c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27481, 'Pompeys Pillar', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c6783a7ebe4fe4640d3e98a63eefc5ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27482, 'Pompton Lakes', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c64da4823b0804440d4f3c9e59a9252c0, 11097, 1, @CurrentDateTime, @EndOfTime)
, (27483, 'Pompton Plains', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c99c00875ec7b44405772bad1ec9252c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27484, 'Ponca', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cd5528a671a03424087d0f709565757c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27485, 'Ponca', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c244cace7ff474540d954826a282d58c0, 961, 1, @CurrentDateTime, @EndOfTime)
, (27486, 'Ponca City', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cf22fabb3ff5a4240d6801d0c004758c0, 25387, 1, @CurrentDateTime, @EndOfTime)
, (27487, 'Ponce', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c8dbeddedd5023240af6e06c94ca750c0, 132502, 1, @CurrentDateTime, @EndOfTime)
, (27488, 'Ponce de Leon', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c7f95325f14b93e4095664ef2fe7b55c0, 598, 1, @CurrentDateTime, @EndOfTime)
, (27489, 'Ponce Inlet', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c7eb8f5e4ab183d4016bab7c7f73b54c0, 3032, 1, @CurrentDateTime, @EndOfTime)
, (27490, 'Poncha Springs', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c9519259ea2414340b47f5479f1845ac0, 737, 1, @CurrentDateTime, @EndOfTime)
, (27491, 'Ponchatoula', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cc8d92a7755703e40973d6425419c56c0, 6559, 1, @CurrentDateTime, @EndOfTime)
, (27492, 'Pond', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cf3226ea9dedb4140841bdfcd09d55dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27493, 'Pond Creek', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c0108819829564240085eaef7cb7458c0, 856, 1, @CurrentDateTime, @EndOfTime)
, (27494, 'Pond Eddy', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c1dd3c9085eb84440f9f8dfa5afb452c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27495, 'Ponder', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c00c3972e69974040f7a52325625258c0, 1395, 1, @CurrentDateTime, @EndOfTime)
, (27496, 'Ponderay', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010cff4701fd19274840f77efed629225dc0, 1137, 1, @CurrentDateTime, @EndOfTime)
, (27497, 'Ponderosa', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cf67af7c77bd441402a5e1be0b8aa5ac0, 387, 1, @CurrentDateTime, @EndOfTime)
, (27498, 'Ponderosa Pine', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c88b201220e7d4140d4e81f8ebf945ac0, 1195, 1, @CurrentDateTime, @EndOfTime)
, (27499, 'Pondosa', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c9959958e83994440e9b57e9f166c5ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
COMMIT
GO
BEGIN TRANSACTION
DECLARE @CurrentDateTime datetime2(7) = '20200101'
DECLARE @EndOfTime datetime2(7) = '99991231 23:59:59.9999999'
INSERT [Application].Cities
(CityID, CityName, StateProvinceID, [Location], LatestRecordedPopulation, LastEditedBy, ValidFrom, ValidTo)
VALUES
(27500, 'Pondosa', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c1c21a8bf038146403670ac3022695dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27501, 'Pondsville', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c73d5e18d71cf434074c817fe9d6553c0, 158, 1, @CurrentDateTime, @EndOfTime)
, (27502, 'Ponemah', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c554a743ba0024840196547f47cba57c0, 724, 1, @CurrentDateTime, @EndOfTime)
, (27503, 'Poneto', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c2fa4c34318544440e243e44f2f4e55c0, 166, 1, @CurrentDateTime, @EndOfTime)
, (27504, 'Ponsford', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c8c75bba8277c47407494282092d857c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27505, 'Ponshewaing', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c24d06053e7b5464070d4658c6a3355c0, 69, 1, @CurrentDateTime, @EndOfTime)
, (27506, 'Ponte Vedra Beach', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cefca2e185c3d3e403c05af4cae5854c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27507, 'Pontiac', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cd65240daff41424005871744a42657c0, 175, 1, @CurrentDateTime, @EndOfTime)
, (27508, 'Pontiac', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010ca05ad82ec8514540c0e6c182a0d254c0, 59515, 1, @CurrentDateTime, @EndOfTime)
, (27509, 'Pontiac', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cc1919b3cc0704440088321614e2856c0, 11931, 1, @CurrentDateTime, @EndOfTime)
, (27510, 'Pontoon Beach', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cb67b03dda85d4340ff678302258556c0, 5836, 1, @CurrentDateTime, @EndOfTime)
, (27511, 'Pontoosuc', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ca6f919cd80504440f931e6ae25cd56c0, 146, 1, @CurrentDateTime, @EndOfTime)
, (27512, 'Pontotoc', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c95dd27a2ba1f41407c992842ea3f56c0, 5625, 1, @CurrentDateTime, @EndOfTime)
, (27513, 'Pontotoc', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cb67cc96bcae83e404801fd19b9be58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27514, 'Pony', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010cc255f9f94ad44640bc08ae4d3ef95bc0, 118, 1, @CurrentDateTime, @EndOfTime)
, (27515, 'Poole', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cbf6378ec677d44400f5c8a5011be58c0, 19, 1, @CurrentDateTime, @EndOfTime)
, (27516, 'Poole', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cbe778a0bf6d14240bed29e373ae955c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27517, 'Pooler', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c9a27d714c80e4040074fd7c9cf4f54c0, 19140, 1, @CurrentDateTime, @EndOfTime)
, (27518, 'Poolesville', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c2a9abd22ae924340dccbc7ffae5a53c0, 4883, 1, @CurrentDateTime, @EndOfTime)
, (27519, 'Pope', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c19822dc0881b414068db1fdea97c56c0, 215, 1, @CurrentDateTime, @EndOfTime)
, (27520, 'Pope Valley', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c2244e856be4e4340a568e55e609b5ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27521, 'Popejoy', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cd45a3dcc034c4540e313573a445b57c0, 79, 1, @CurrentDateTime, @EndOfTime)
, (27522, 'Popes Creek', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c8bd35ae2123343406e241aee6d3f53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27523, 'Poplar', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c002a0b15d20642408be2b08f29c95dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27524, 'Poplar', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cbcac2e4c4b094240ff356acff69554c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27525, 'Poplar', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c27c34c36790e4840cf73fa30b14c5ac0, 810, 1, @CurrentDateTime, @EndOfTime)
, (27526, 'Poplar', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cd6fac7e7ba4a4740769e1d1524f356c0, 603, 1, @CurrentDateTime, @EndOfTime)
, (27527, 'Poplar Bluff', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cba0b395be5604240341f2114259956c0, 17023, 1, @CurrentDateTime, @EndOfTime)
, (27528, 'Poplar Branch', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010cddd26a48dc234240dd103eef21f952c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27529, 'Poplar Creek', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cceb4b39e10ad404028486c778f6356c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27530, 'Poplar Grove', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c6f34362a262f45409831056b9c3456c0, 5023, 1, @CurrentDateTime, @EndOfTime)
, (27531, 'Poplar Grove', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c5419c6dd20464140e15c68539ab656c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27532, 'Poplar Plains', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010ce0206b57322e4340156d33ba28eb54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27533, 'Poplarville', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c180c097316d73e408e3f51d9306256c0, 2894, 1, @CurrentDateTime, @EndOfTime)
, (27534, 'Popple River', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c745c8dec4ae546409dd843fbd82b56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27535, 'Poquonock Bridge', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010c9c72e0302cac4440b3a2bc45960152c0, 1727, 1, @CurrentDateTime, @EndOfTime)
, (27536, 'Poquoson', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c8b10c3b3a98f4240bfcc1c37211653c0, 12150, 1, @CurrentDateTime, @EndOfTime)
, (27537, 'Poquott', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cfbdc1a22b8794440e1df5630604552c0, 953, 1, @CurrentDateTime, @EndOfTime)
, (27538, 'Porcupine', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010cbe3fefd7ae9e4540fa298e032f9559c0, 1062, 1, @CurrentDateTime, @EndOfTime)
, (27539, 'Porcupine', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010cc836ba94041c47406b0e10cc514659c0, 146, 1, @CurrentDateTime, @EndOfTime)
, (27540, 'Port Allegany', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c27327381cbe7444090e2772ee79153c0, 2157, 1, @CurrentDateTime, @EndOfTime)
, (27541, 'Port Allen', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010caadf3b20bf733e40fb873e6972cd56c0, 5180, 1, @CurrentDateTime, @EndOfTime)
, (27542, 'Port Alsworth', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c52b81e85eb194e4046bd9646024a63c0, 159, 1, @CurrentDateTime, @EndOfTime)
, (27543, 'Port Alto', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c350a4966f5a83c400630c099731a58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27544, 'Port Angeles', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c9d137b681f0f48405622f54391db5ec0, 19038, 1, @CurrentDateTime, @EndOfTime)
, (27545, 'Port Aransas', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c209e80817bd53b408933750de94358c0, 3480, 1, @CurrentDateTime, @EndOfTime)
, (27546, 'Port Armstrong', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c7c5d2b4602264c4046aba45f2cd560c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27547, 'Port Arthur', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c11cd977219e63d404fe8f527717b57c0, 53818, 1, @CurrentDateTime, @EndOfTime)
, (27548, 'Port Ashton', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c8fc2f5285c074e400124e4cdab8162c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27549, 'Port Austin', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c54820f6fe7054640ba9f53909fbf54c0, 664, 1, @CurrentDateTime, @EndOfTime)
, (27550, 'Port Barre', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c77df8cf5688f3e4010ad156d0efd56c0, 2055, 1, @CurrentDateTime, @EndOfTime)
, (27551, 'Port Barrington', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c0c4169030b1f4540ce5a6501ee0c56c0, 1517, 1, @CurrentDateTime, @EndOfTime)
, (27552, 'Port Blakely', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010cace122f774cc474052a85d02a6a05ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27553, 'Port Bolivar', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cfc23c2757b613d40e732da4febb057c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27554, 'Port Byron', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c020a9a3b9fcd44404098254b779556c0, 1647, 1, @CurrentDateTime, @EndOfTime)
, (27555, 'Port Byron', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cb2f105d26a844540e027b3e6ec2753c0, 1290, 1, @CurrentDateTime, @EndOfTime)
, (27556, 'Port Carbon', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cbd2da2372659444085a4051ece0a53c0, 1889, 1, @CurrentDateTime, @EndOfTime)
, (27557, 'Port Charlotte', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c3dd0af52e6f93a405ce3d81fcd8554c0, 54392, 1, @CurrentDateTime, @EndOfTime)
, (27558, 'Port Chester', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c716605d0398044405e1f8c8e9a6a52c0, 28967, 1, @CurrentDateTime, @EndOfTime)
, (27559, 'Port Chilkoot', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c6ef5413b4c9d4d4046bd964602ee60c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27560, 'Port Clinton', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cb4fe3b47894a4440c30c326e8f0153c0, 326, 1, @CurrentDateTime, @EndOfTime)
, (27561, 'Port Clinton', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cea59b51089c14440580ee32403bc54c0, 6056, 1, @CurrentDateTime, @EndOfTime)
, (27562, 'Port Clyde', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010cfef4faeeb1f64540bf87a6472e5051c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27563, 'Port Costa', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c697eeb79ed054340ca350532bb8b5ec0, 190, 1, @CurrentDateTime, @EndOfTime)
, (27564, 'Port Deposit', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c94066d286bcd4340764309e95f0753c0, 653, 1, @CurrentDateTime, @EndOfTime)
, (27565, 'Port Dickinson', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cfcfecd8b13114540188c5b165df952c0, 1641, 1, @CurrentDateTime, @EndOfTime)
, (27566, 'Port Edwards', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cb40012f2e62c4640cdf5c7c5627756c0, 1818, 1, @CurrentDateTime, @EndOfTime)
, (27567, 'Port Ewen', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c86a28a2ce3f344402cf015dd7a7e52c0, 3546, 1, @CurrentDateTime, @EndOfTime)
, (27568, 'Port Gamble', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c74a14d6958ed47409b11ef4a5ca55ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27569, 'Port Gibson', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c52bbbabe6a8445403157ab1b144a53c0, 453, 1, @CurrentDateTime, @EndOfTime)
, (27570, 'Port Gibson', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cbdbc4a8803f63f40d47c3ac3f9be56c0, 1567, 1, @CurrentDateTime, @EndOfTime)
, (27571, 'Port Graham', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cb6d6bc4ffaac4d407c3892158dfa62c0, 177, 1, @CurrentDateTime, @EndOfTime)
, (27572, 'Port Hadlock', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010cf73361a0100448401ae725b586b05ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27573, 'Port Heiden', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c8841052c5e774c40802fe0c0ffd363c0, 102, 1, @CurrentDateTime, @EndOfTime)
, (27574, 'Port Henry', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cbdc0519731064640daa95e236e5d52c0, 1194, 1, @CurrentDateTime, @EndOfTime)
, (27575, 'Port Hope', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c21cf89986df84540095d78149dad54c0, 267, 1, @CurrentDateTime, @EndOfTime)
, (27576, 'Port Hudson', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c6ccec133a1ad3e40c1bfad6040d156c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27577, 'Port Hueneme', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c3b34d18cea124140498dbfa37ccc5dc0, 21723, 1, @CurrentDateTime, @EndOfTime)
, (27578, 'Port Huron', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c12f17b40457c4540c92654cb319b54c0, 30184, 1, @CurrentDateTime, @EndOfTime)
, (27579, 'Port Isabel', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c21a34d1fcb123a402c1d6272594d58c0, 5006, 1, @CurrentDateTime, @EndOfTime)
, (27580, 'Port Jefferson', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c52499d8026794440501fdcf86e4452c0, 7750, 1, @CurrentDateTime, @EndOfTime)
, (27581, 'Port Jefferson', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c3e3c4b90112a4440c5abac6d0a0655c0, 371, 1, @CurrentDateTime, @EndOfTime)
, (27582, 'Port Jefferson Station', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cbf3edfbb72764440028bb26d074352c0, 7838, 1, @CurrentDateTime, @EndOfTime)
, (27583, 'Port Jervis', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cc337031203b044408d09319754ac52c0, 8828, 1, @CurrentDateTime, @EndOfTime)
, (27584, 'Port Kent', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c47b5e3e1984346406a9cf28d0d5a52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27585, 'Port LaBelle', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010ca5e83702a7c13a40ec1a88c0ec5954c0, 3530, 1, @CurrentDateTime, @EndOfTime)
, (27586, 'Port Lavaca', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c0825276e709d3c403e986fd8112858c0, 12248, 1, @CurrentDateTime, @EndOfTime)
, (27587, 'Port Leyden', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cb2fe85d4a3ca4540fad8b85917d652c0, 672, 1, @CurrentDateTime, @EndOfTime)
, (27588, 'Port Lions', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cd7a3703d0aef4c40c4190d2a3b1c63c0, 194, 1, @CurrentDateTime, @EndOfTime)
, (27589, 'Port Ludlow', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c781c508072f647406f264b52beab5ec0, 2603, 1, @CurrentDateTime, @EndOfTime)
, (27590, 'Port Madison', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c86634cb0eed94740228ed02a8ea15ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27591, 'Port Mansfield', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c14b4249b068e3a4099fb3fe2325b58c0, 226, 1, @CurrentDateTime, @EndOfTime)
, (27592, 'Port Matilda', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cb682a625566644409f138c94778353c0, 606, 1, @CurrentDateTime, @EndOfTime)
, (27593, 'Port Mayaca', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c3859599187fc3a40271b6a6fcb2654c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27594, 'Port Moller', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c367bfbce8afe4b4088331a54761264c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27595, 'Port Monmouth', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cbddf68c70d3744405b3ffd674d8652c0, 3818, 1, @CurrentDateTime, @EndOfTime)
, (27596, 'Port Neches', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c11ba956fc7fd3d40cd5f7c2c587d57c0, 13040, 1, @CurrentDateTime, @EndOfTime)
, (27597, 'Port Norris', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c6203d8367b9f43407ae2395b40c252c0, 1377, 1, @CurrentDateTime, @EndOfTime)
, (27598, 'Port O''Brien', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cc43ea65ab0dd4c406f073422222a63c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27599, 'Port O''Connor', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c71242b1ac6723c40ce1ec3bef81958c0, 1253, 1, @CurrentDateTime, @EndOfTime)
, (27600, 'Port Orange', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c47ffcbb568233d4078431a15b83f54c0, 56048, 1, @CurrentDateTime, @EndOfTime)
, (27601, 'Port Orchard', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c43d1f2f22ac54740cb86904eb8a85ec0, 11144, 1, @CurrentDateTime, @EndOfTime)
, (27602, 'Port Orford', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010ce3a430ef715f45405efb5d33d41f5fc0, 1133, 1, @CurrentDateTime, @EndOfTime)
, (27603, 'Port Reading', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c5f1e7c725e484440d246bfc7aa9052c0, 3728, 1, @CurrentDateTime, @EndOfTime)
, (27604, 'Port Republic', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c40b3356ca5c243400d1cd0d2159f52c0, 1115, 1, @CurrentDateTime, @EndOfTime)
, (27605, 'Port Richey', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cdc9f8b868c453c40d01fe4060dae54c0, 2671, 1, @CurrentDateTime, @EndOfTime)
, (27606, 'Port Royal', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010caa7697d585304040f91ee4ab532c54c0, 10678, 1, @CurrentDateTime, @EndOfTime)
, (27607, 'Port Royal', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ca0a52bd846444440668a94c1ac5853c0, 925, 1, @CurrentDateTime, @EndOfTime)
, (27608, 'Port Royal', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cd8440b75fd154340128942cb3a4c53c0, 126, 1, @CurrentDateTime, @EndOfTime)
, (27609, 'Port Royal', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c6cc8e47915474340e8e96d7d224555c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27610, 'Port Saint Joe', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cc8eafb15d7cf3d4074620fed635355c0, 3445, 1, @CurrentDateTime, @EndOfTime)
, (27611, 'Port Saint John', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cedf6b41e197a3c40863eb37f793254c0, 12267, 1, @CurrentDateTime, @EndOfTime)
, (27612, 'Port Saint Lucie', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c92b476363f4b3b4040d763c76b1654c0, 164603, 1, @CurrentDateTime, @EndOfTime)
, (27613, 'Port Salerno', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010ca5886764eb243b40092241a7d60c54c0, 10091, 1, @CurrentDateTime, @EndOfTime)
, (27614, 'Port Sanilac', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cfe1c305926b745405ba3d414b7a254c0, 623, 1, @CurrentDateTime, @EndOfTime)
, (27615, 'Port Sewall', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c74d42c2ba82f3b409c9a159b200c54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27616, 'Port Sulphur', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cbe665eb3017b3d404d5d43ba696c56c0, 1760, 1, @CurrentDateTime, @EndOfTime)
, (27617, 'Port Tobacco', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c210a6f99ef4143402478c99c034153c0, 13, 1, @CurrentDateTime, @EndOfTime)
, (27618, 'Port Townsend', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010ce56ec61ffb0e48406d95bb2aabb05ec0, 9113, 1, @CurrentDateTime, @EndOfTime)
, (27619, 'Port Trevorton', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c19de5108895a4440da6443ed6d3753c0, 769, 1, @CurrentDateTime, @EndOfTime)
, (27620, 'Port Union', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cbdf9b2599aaa43402280e552a61d55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27621, 'Port Vincent', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cc53d963e74553e4070e591e45eb656c0, 741, 1, @CurrentDateTime, @EndOfTime)
, (27622, 'Port Vue', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c4251eadcfe2a444038e1b952aaf753c0, 3798, 1, @CurrentDateTime, @EndOfTime)
, (27623, 'Port Wakefield', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cb0462c184b064d4048e17a14ae2163c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27624, 'Port Washington', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c095a379490b1454012bc218d0af855c0, 11250, 1, @CurrentDateTime, @EndOfTime)
, (27625, 'Port Washington', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c189f5d19af69444006627e13af6c52c0, 15846, 1, @CurrentDateTime, @EndOfTime)
, (27626, 'Port Washington', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c30849cf7ff2944400b1a44b5526154c0, 569, 1, @CurrentDateTime, @EndOfTime)
, (27627, 'Port Washington North', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cd076f123236c4440ca7b8b3dea6c52c0, 3154, 1, @CurrentDateTime, @EndOfTime)
, (27628, 'Port Wentworth', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c310c58721513404007509d58714a54c0, 5359, 1, @CurrentDateTime, @EndOfTime)
, (27629, 'Port William', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cbc9a971ea8c64340c498f4f752f254c0, 254, 1, @CurrentDateTime, @EndOfTime)
, (27630, 'Port William', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010cbeae1523013f4d40b7faa01da61263c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27631, 'Port Wing', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cc88d6cf827634740c33e4ba1bdd856c0, 164, 1, @CurrentDateTime, @EndOfTime)
, (27632, 'Portage', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010cbf171527ad614740a17b20c3741e51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27633, 'Portage', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010cfa754c82dcfc4440cc92a57b420d5cc0, 245, 1, @CurrentDateTime, @EndOfTime)
, (27634, 'Portage', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c837d851623b4474005b7ff12029c5ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27635, 'Portage', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010cf99e91088dd34740e512a2d7fac75bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27636, 'Portage', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c183ec7ecd1a94440a5d4ca29a6e954c0, 438, 1, @CurrentDateTime, @EndOfTime)
, (27637, 'Portage', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c555c6622b6c944409b75c6f745cb55c0, 36828, 1, @CurrentDateTime, @EndOfTime)
, (27638, 'Portage', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c935742d202c54540045ec1919b5d56c0, 10324, 1, @CurrentDateTime, @EndOfTime)
, (27639, 'Portage', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010caa3b6068bf194540ea268cc11e6555c0, 46292, 1, @CurrentDateTime, @EndOfTime)
, (27640, 'Portage', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c507a956bc0314440bbe188ff05ab53c0, 2638, 1, @CurrentDateTime, @EndOfTime)
, (27641, 'Portage Des Sioux', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cf41a16fe6776434011dabcbbdf9556c0, 328, 1, @CurrentDateTime, @EndOfTime)
, (27642, 'Portage Lakes', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010ce53d737bee804440591eff60bb6154c0, 6968, 1, @CurrentDateTime, @EndOfTime)
, (27643, 'Portageville', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cae916e9571364240bfad0507c56c56c0, 3228, 1, @CurrentDateTime, @EndOfTime)
, (27644, 'Portageville', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010caadd0abcee484540346953758f8253c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27645, 'Portal', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c7d433c6de8e93f40462234820d495bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27646, 'Portal', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c6dfe5f75e44440408533ae6eab7b54c0, 638, 1, @CurrentDateTime, @EndOfTime)
, (27647, 'Portal', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010c04633376787f4840d7fdbeda2ca359c0, 126, 1, @CurrentDateTime, @EndOfTime)
, (27648, 'Portales', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c99e26025d5174140aeb607c666d559c0, 12280, 1, @CurrentDateTime, @EndOfTime)
, (27649, 'Porter', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cd73c1518fcef41400410aee8f5e257c0, 566, 1, @CurrentDateTime, @EndOfTime)
, (27650, 'Porter', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c70b378b130784740c2a6cea3e2d35ec0, 207, 1, @CurrentDateTime, @EndOfTime)
, (27651, 'Porter', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c0a8d1656e0e545403b191c25afbb51c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27652, 'Porter', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c18e0ccf973514640cf98ee1a990a58c0, 183, 1, @CurrentDateTime, @EndOfTime)
, (27653, 'Porter', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010cd38f3cc6cbce44404b7842afbfc455c0, 4858, 1, @CurrentDateTime, @EndOfTime)
, (27654, 'Porter Center', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c266f8099ef9f45407620466348bd53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27655, 'Porter Heights', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c81d1e5cde1263e40826ed4af99d457c0, 1653, 1, @CurrentDateTime, @EndOfTime)
, (27656, 'Porterdale', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cdf39ef5a9dc940402d149ff133f954c0, 1429, 1, @CurrentDateTime, @EndOfTime)
, (27657, 'Porterfield', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c66964e35c49346406d7f1deed9f255c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27658, 'Portersville', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c1bb1602c1d294140d2be5e06887455c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27659, 'Portersville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cccf33ba81f764440999361261b0954c0, 235, 1, @CurrentDateTime, @EndOfTime)
, (27660, 'Porterville', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cea5be67459084240d987abb912c15dc0, 54165, 1, @CurrentDateTime, @EndOfTime)
, (27661, 'Porterville', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010ce0f76f5e9c7d444089c047b368eb5bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27662, 'Porterville', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010ce702f2800d584040364e5480391e56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27663, 'Porthill', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c1749bbd1c77f4840f9b1930bdf1f5dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27664, 'Portia', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c86787f17110b4240d74004664fc456c0, 437, 1, @CurrentDateTime, @EndOfTime)
, (27665, 'Portis', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c9ae72dc324c84340abf70ac160ac58c0, 103, 1, @CurrentDateTime, @EndOfTime)
, (27666, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c4a7a185a9d374440ea93dc61933e55c0, 6223, 1, @CurrentDateTime, @EndOfTime)
, (27667, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010ceb5d17d929764440a1fbcd1f2ec652c0, 519, 1, @CurrentDateTime, @EndOfTime)
, (27668, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010c70bc96ebc8bf4740273dc21fb45758c0, 606, 1, @CurrentDateTime, @EndOfTime)
, (27669, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c4f20ec14abd4454098947142579051c0, 66194, 1, @CurrentDateTime, @EndOfTime)
, (27670, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cf0541bf7416f454039865b99cb3955c0, 3883, 1, @CurrentDateTime, @EndOfTime)
, (27671, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010c64d23a0554c944403b2fba61002952c0, 5862, 1, @CurrentDateTime, @EndOfTime)
, (27672, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cade75a6a739e4040f9855792bce056c0, 430, 1, @CurrentDateTime, @EndOfTime)
, (27673, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c65a5ee6f754a4240d66c8a6c0ca155c0, 11480, 1, @CurrentDateTime, @EndOfTime)
, (27674, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c330a93f30f3243409438865b99415ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27675, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010ce36025d52d833e40ea76f695878c55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27676, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c58c0a9b46a0a4340cd34ab88e4ec5ac0, 135, 1, @CurrentDateTime, @EndOfTime)
, (27677, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c65c5707500c34640acf424fa46ab5ec0, 583776, 1, @CurrentDateTime, @EndOfTime)
, (27678, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c7909a93693e03b40fad34675ba5458c0, 15099, 1, @CurrentDateTime, @EndOfTime)
, (27679, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c0b46802e75904540e9f92e00e84757c0, 35, 1, @CurrentDateTime, @EndOfTime)
, (27680, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cc5bf74fffd5a43402dedd45ceeed56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27681, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cce16b5a09c304540c9169348ecdd53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27682, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c7cfec57df5894240c669882afc5358c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27683, 'Portland', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010ce26135f169e24540ecd56c8aecb656c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27684, 'Portland Mills', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c7847212466b04440b599547e63b553c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27685, 'Portola', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c7ca98e0bbde74340505c44ca051e5ec0, 2104, 1, @CurrentDateTime, @EndOfTime)
, (27686, 'Portola Valley', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c555689682ab1424082c41b3e0e8f5ec0, 4353, 1, @CurrentDateTime, @EndOfTime)
, (27687, 'Portsmouth', [DataLoadSimulation].[GetStateProvinceID] ('RI'), 0xe6100000010c2f8a1ef818cd44404bb6155605d051c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27688, 'Portsmouth', [DataLoadSimulation].[GetStateProvinceID] ('NH'), 0xe6100000010cb2a83e462f89454073ddefabcdb051c0, 20779, 1, @CurrentDateTime, @EndOfTime)
, (27689, 'Portsmouth', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c099e8c3bef6a4240658fabec161353c0, 95535, 1, @CurrentDateTime, @EndOfTime)
, (27690, 'Portsmouth', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c6ec905c2a95d43400844e3e4d9bf54c0, 20226, 1, @CurrentDateTime, @EndOfTime)
, (27691, 'Portsmouth', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010ced951ef23bd34440700f9df930e157c0, 195, 1, @CurrentDateTime, @EndOfTime)
, (27692, 'Portville', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c42902859f3044540b336d77ad09553c0, 1014, 1, @CurrentDateTime, @EndOfTime)
, (27693, 'Porum', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cc1c5fd9419ae4140d4881afe83d257c0, 727, 1, @CurrentDateTime, @EndOfTime)
, (27694, 'Posen', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c67391ad187a1464095980c6cbaec54c0, 234, 1, @CurrentDateTime, @EndOfTime)
, (27695, 'Posen', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cb36d6292dbd044403352efa99ceb55c0, 5987, 1, @CurrentDateTime, @EndOfTime)
, (27696, 'Posey', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cc5b93c8cffe64140ce226f14b4ab5dc0, 10, 1, @CurrentDateTime, @EndOfTime)
, (27697, 'Posey', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cd7790a6fc5bd4040d738f647736d59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27698, 'Poseyville', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c196fd003c41543407ae40f061ef255c0, 1045, 1, @CurrentDateTime, @EndOfTime)
, (27699, 'Poso Park', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cb20d81c8c7e741407e6a61bba0a85dc0, 9, 1, @CurrentDateTime, @EndOfTime)
, (27700, 'Possession', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c8ffcc1c073f54740ba68c87814985ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27701, 'Post', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010cf92f1004c81446401878ee3d5c1f5ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27702, 'Post', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cc130aa567098404092c20655345859c0, 5376, 1, @CurrentDateTime, @EndOfTime)
, (27703, 'Post Creek', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c9070b5a915b347405280289831865cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27704, 'Post Falls', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c3d748b0ae6db47400dd649c7e63c5dc0, 27574, 1, @CurrentDateTime, @EndOfTime)
, (27705, 'Post Lake', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c699b2cff6bb84640e753c72a254556c0, 374, 1, @CurrentDateTime, @EndOfTime)
, (27706, 'Post Oak', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c8983dfe1d1484340e5aeca2a117057c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27707, 'Post Oak Bend City', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cf5030dece750404003f3ebe2111458c0, 595, 1, @CurrentDateTime, @EndOfTime)
, (27708, 'Postelle', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c7b7c8c03f9484140a58e441e77c156c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27709, 'Poston', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c384481e3d7ef40401e6beb4c46db53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27710, 'Poston', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c39e51b1bcbfe4040298183ac5d995cc0, 285, 1, @CurrentDateTime, @EndOfTime)
, (27711, 'Postville', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cf1f3df83d78a45407102d3695de456c0, 2227, 1, @CurrentDateTime, @EndOfTime)
, (27712, 'Postville', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cf73aa92f4b66454041a841872f7056c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27713, 'Potala Pastillo', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010cc344285bc9fd3140701ef3a6c79f50c0, 3092, 1, @CurrentDateTime, @EndOfTime)
, (27714, 'Potato Creek', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c2a8afc9f68c4454082c64ca25e7f59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27715, 'Poteau', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c087c4c4c61874140f1bde5086ea957c0, 8520, 1, @CurrentDateTime, @EndOfTime)
, (27716, 'Poteet', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c283394c95f0a3d40848da1525ba458c0, 3260, 1, @CurrentDateTime, @EndOfTime)
, (27717, 'Poth', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c7a4db450d7113d40637891ae3e8558c0, 1908, 1, @CurrentDateTime, @EndOfTime)
, (27718, 'Potlatch', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c5fe51ab0f57547404948a46d7c395dc0, 804, 1, @CurrentDateTime, @EndOfTime)
, (27719, 'Potomac', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cdb36e73b53824340854ebe8f594d53c0, 44965, 1, @CurrentDateTime, @EndOfTime)
, (27720, 'Potomac', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c240d6e6b0b274440284f0fc03cf355c0, 750, 1, @CurrentDateTime, @EndOfTime)
, (27721, 'Potomac Heights', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c234e27d9ea4d4340d79d9383fe4853c0, 1117, 1, @CurrentDateTime, @EndOfTime)
, (27722, 'Potomac Mills', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c06aa3583ae524340c9271a5ad35253c0, 5614, 1, @CurrentDateTime, @EndOfTime)
, (27723, 'Potomac Park', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010ca3d4b9fd4dce434020d84c1993b353c0, 2530, 1, @CurrentDateTime, @EndOfTime)
, (27724, 'Potosi', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010ca75d4c33ddf742402d4f31186db256c0, 2660, 1, @CurrentDateTime, @EndOfTime)
, (27725, 'Potosi', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c4b4a308b3f584540e57a809392ad56c0, 688, 1, @CurrentDateTime, @EndOfTime)
, (27726, 'Potosi', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c521b8b5c262a4040750de9a603ea58c0, 2991, 1, @CurrentDateTime, @EndOfTime)
, (27727, 'Potrero', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cfa19cd80694d4040aba3f4963c275dc0, 656, 1, @CurrentDateTime, @EndOfTime)
, (27728, 'Potsdam', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c66f84f3750fb43401350977bb71a55c0, 288, 1, @CurrentDateTime, @EndOfTime)
, (27729, 'Potsdam', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cd07f0f5ebb5546409152bfc1cdbe52c0, 9428, 1, @CurrentDateTime, @EndOfTime)
, (27730, 'Pottawattamie Park', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c7987252f7cdc4440b49fd67e7cb755c0, 235, 1, @CurrentDateTime, @EndOfTime)
, (27731, 'Potter', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cec7e5f6dd69b444020ed7f8035d459c0, 337, 1, @CurrentDateTime, @EndOfTime)
, (27732, 'Potter', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c9f1edb32e04641400f9fcfdbb39557c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27733, 'Potter', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c2d91b0146e0f464013060a615a0656c0, 253, 1, @CurrentDateTime, @EndOfTime)
, (27734, 'Potter', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c34e895fc99a53e40ad985b6bb9bb54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27735, 'Potter', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cc4dca458245a454000dcd1a4394d53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27736, 'Potter', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cbe4f55a181b6434090b86c1915c957c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27737, 'Potter Lake', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c4e5fcfd72c6945409fb6a1bd551656c0, 1107, 1, @CurrentDateTime, @EndOfTime)
, (27738, 'Potter Valley', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c12a04bdd3aa943402fe1d05b3cc75ec0, 646, 1, @CurrentDateTime, @EndOfTime)
, (27739, 'Potters Hill', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c839664d3007c41405399bdc7746d53c0, 481, 1, @CurrentDateTime, @EndOfTime)
, (27740, 'Pottersville', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c478d093197dd454062cfe8586f7452c0, 424, 1, @CurrentDateTime, @EndOfTime)
, (27741, 'Pottersville', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c0da25ae95a5b44401cf4007132ae52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27742, 'Potterville', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cffa21529de41404051aa33ad830755c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27743, 'Potterville', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010cc5c551b98950454057772cb6492f55c0, 2617, 1, @CurrentDateTime, @EndOfTime)
, (27744, 'Pottery Addition', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c01c11c3d7e334440b2a43737012854c0, 293, 1, @CurrentDateTime, @EndOfTime)
, (27745, 'Potts Camp', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c25ec3603b752414089905fe48a5356c0, 523, 1, @CurrentDateTime, @EndOfTime)
, (27746, 'Pottsboro', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c8ee6c8ca2fe140402c68b51bd82a58c0, 2160, 1, @CurrentDateTime, @EndOfTime)
, (27747, 'Pottstown', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c8964236b681f44409ddf8b8a93e952c0, 22377, 1, @CurrentDateTime, @EndOfTime)
, (27748, 'Pottsville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cba522a3cc3574440a5d93c0e830c53c0, 14324, 1, @CurrentDateTime, @EndOfTime)
, (27749, 'Pottsville', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010caeec2708c39f414094a0bfd0234357c0, 2838, 1, @CurrentDateTime, @EndOfTime)
, (27750, 'Pottsville', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cbb534b8457ac3f40e6907989d69458c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27751, 'Potwin', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c1241e6142ef84240375a69ad434158c0, 449, 1, @CurrentDateTime, @EndOfTime)
, (27752, 'Poudre Park', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c8983dfe1d157444083f5245580535ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27753, 'Poughkeepsie', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c4c474ac4a5d944400206932cf17a52c0, 32736, 1, @CurrentDateTime, @EndOfTime)
, (27754, 'Poulan', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c0c37853a51833f408978904369f254c0, 851, 1, @CurrentDateTime, @EndOfTime)
, (27755, 'Poulsbo', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010cf81a82e332de47406f6990dd60a95ec0, 9200, 1, @CurrentDateTime, @EndOfTime)
, (27756, 'Poultney', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010cd7cc107d2dc24540854a123a1e4f52c0, 1612, 1, @CurrentDateTime, @EndOfTime)
, (27757, 'Pound', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c11f868160d8c464060b3b7ef2c0256c0, 377, 1, @CurrentDateTime, @EndOfTime)
, (27758, 'Pound', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cd48448e1d58f4240202b53277ba654c0, 1037, 1, @CurrentDateTime, @EndOfTime)
, (27759, 'Pound Ridge', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cccbadae5b69a4440512a8650ca6452c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27760, 'Poway', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010cd4a93ccb3d7b40406205099b4b425dc0, 47811, 1, @CurrentDateTime, @EndOfTime)
, (27761, 'Powder River', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010c8bf040ae1e844540d06229922fbf5ac0, 44, 1, @CurrentDateTime, @EndOfTime)
, (27762, 'Powder Springs', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cc7a64bb505ee4040130ebdc5c32b55c0, 13940, 1, @CurrentDateTime, @EndOfTime)
, (27763, 'Powder Wash', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010ce61027e60f79444014ed855def135bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27764, 'Powderhorn', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c01005bb972234340366d10f722c65ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27765, 'Powderly', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c633f30ecd5e740409f1caace8fe157c0, 1178, 1, @CurrentDateTime, @EndOfTime)
, (27766, 'Powderly', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c7509e297559e42408ecfbfb82fca55c0, 745, 1, @CurrentDateTime, @EndOfTime)
, (27767, 'Powdersville', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c677dca3159654140654117c38b9f54c0, 7618, 1, @CurrentDateTime, @EndOfTime)
, (27768, 'Powderville', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c062e8f3523e1464081ee265360475ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27769, 'Powell', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cfc276ecb36da4440fc8d76dc702053c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27770, 'Powell', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010ccbe89150441c44403c6a4c88395258c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27771, 'Powell', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010caaded04a100442400a360939ca0155c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27772, 'Powell', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c30f15f12c2fa40402a5ee6edb83858c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27773, 'Powell', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c2564d641147e3c400bad985b6b9b54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27774, 'Powell', [DataLoadSimulation].[GetStateProvinceID] ('WY'), 0xe6100000010cfb31f7da7d6046400463337678305bc0, 6314, 1, @CurrentDateTime, @EndOfTime)
, (27775, 'Powell', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c75e5b33c0f0f404065cf543eba1458c0, 136, 1, @CurrentDateTime, @EndOfTime)
, (27776, 'Powell', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cf073d76dab2441409a70f959f66f55c0, 955, 1, @CurrentDateTime, @EndOfTime)
, (27777, 'Powell', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cd33e671c341444409c25b7dccfc454c0, 11500, 1, @CurrentDateTime, @EndOfTime)
, (27778, 'Powell Butte', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c52216816b21f46405bf6da221f415ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27779, 'Powellhurst', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010cf833bc5983c04640d7a546e867a25ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27780, 'Powells Crossroads', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c6d0036204298414000dea74f175f55c0, 1322, 1, @CurrentDateTime, @EndOfTime)
, (27781, 'Powellsville', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c4a287d21e41c4240e4727275b63b53c0, 276, 1, @CurrentDateTime, @EndOfTime)
, (27782, 'Powellton', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c3df779e7ab0c4340f33b4d66bc5454c0, 619, 1, @CurrentDateTime, @EndOfTime)
, (27783, 'Powellville', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c9d24a7c0132a43407343f8bc07d852c0, 189, 1, @CurrentDateTime, @EndOfTime)
, (27784, 'Powelton', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c579aef3be1b64040488b3386b9b754c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27785, 'Power', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010ccc24ea059fdb4740cf6cb2a1f6eb5bc0, 179, 1, @CurrentDateTime, @EndOfTime)
, (27786, 'Powers', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c8f2f46c950d8464050e10852a9e155c0, 422, 1, @CurrentDateTime, @EndOfTime)
, (27787, 'Powers', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c902e36ad14714540c4e8b985ae045fc0, 689, 1, @CurrentDateTime, @EndOfTime)
, (27788, 'Powers Lake', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c954e7f51dd4645409dbe9eafd91256c0, 1615, 1, @CurrentDateTime, @EndOfTime)
, (27789, 'Powers Lake', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010c9686d0f709484840162de52178a959c0, 280, 1, @CurrentDateTime, @EndOfTime)
, (27790, 'Powersville', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010ceb5edd674b464440b433f1b3365357c0, 60, 1, @CurrentDateTime, @EndOfTime)
, (27791, 'Powhatan', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c611a868f880a4240e35aa3d494c756c0, 72, 1, @CurrentDateTime, @EndOfTime)
, (27792, 'Powhatan', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c1b5d4a0279df3f4069780ec0e14c57c0, 135, 1, @CurrentDateTime, @EndOfTime)
, (27793, 'Powhatan', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c92f1834e63c542408aeb7310cf7a53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27794, 'Powhatan Point', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cb98d06f016ee43401e8d43fd2e3454c0, 1592, 1, @CurrentDateTime, @EndOfTime)
, (27795, 'Powhattan', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c9cb3f4577ee143407701e5a551e857c0, 77, 1, @CurrentDateTime, @EndOfTime)
, (27796, 'Pownal', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010c24d6e253006245403a9160aa194f52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27797, 'Poy Sippi', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c637726d98f114640eb0a6c84b43f56c0, 371, 1, @CurrentDateTime, @EndOfTime)
, (27798, 'Poydras', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c870b8a308fde3d409dc717a3e47856c0, 2351, 1, @CurrentDateTime, @EndOfTime)
, (27799, 'Poyen', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c762dc665812941401eceb2ddf32857c0, 290, 1, @CurrentDateTime, @EndOfTime)
, (27800, 'Poynette', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c8365112ff4b145407b0b900dc95956c0, 2528, 1, @CurrentDateTime, @EndOfTime)
, (27801, 'Poynor', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c9f5e848483094040ec1c5e6b4ae657c0, 305, 1, @CurrentDateTime, @EndOfTime)
, (27802, 'Poynor', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c162b0f779a424240b85043650dba56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27803, 'Prague', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c6bde3fbecebe4140c45fb9fc5c2d58c0, 2386, 1, @CurrentDateTime, @EndOfTime)
, (27804, 'Prague', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c847ea65eb7a744402fb3be37bc3358c0, 303, 1, @CurrentDateTime, @EndOfTime)
, (27805, 'Prairie', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c2bf9d85da0c04540ff00101cbce45cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27806, 'Prairie', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010ce4c4b2f4fce54040a7203f1bb92a56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27807, 'Prairie City', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c69c878944a3b4640b5577ac86fad5dc0, 909, 1, @CurrentDateTime, @EndOfTime)
, (27808, 'Prairie City', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c382163a4cdc3464027eec2207ab359c0, 23, 1, @CurrentDateTime, @EndOfTime)
, (27809, 'Prairie City', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c82efece1814f444020370d9b929d56c0, 379, 1, @CurrentDateTime, @EndOfTime)
, (27810, 'Prairie City', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c240ed940bacc444023d6879a0d4f57c0, 1680, 1, @CurrentDateTime, @EndOfTime)
, (27811, 'Prairie du Chien', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c3929cc7b9c864540efb72c150ac956c0, 5911, 1, @CurrentDateTime, @EndOfTime)
, (27812, 'Prairie du Rocher', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c2fc44549a30a4340052bf3fb238656c0, 604, 1, @CurrentDateTime, @EndOfTime)
, (27813, 'Prairie du Sac', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010ce8514c39baa445402dfbbf34566e56c0, 3972, 1, @CurrentDateTime, @EndOfTime)
, (27814, 'Prairie Farm', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c3691990b5c9e464041d47d00d2fe56c0, 473, 1, @CurrentDateTime, @EndOfTime)
, (27815, 'Prairie Grove', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c9a982ec4eafc41408d06955d559457c0, 4380, 1, @CurrentDateTime, @EndOfTime)
, (27816, 'Prairie Grove', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c4a079046aa2345402dbb16e3b21056c0, 1904, 1, @CurrentDateTime, @EndOfTime)
, (27817, 'Prairie Hill', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cb6b3f9c962c243406ba395d63a2f57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27818, 'Prairie Hill', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ca7f22cf7b8a73f403ddf05007d3258c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27819, 'Prairie Home', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c61b0d12813684340ecd74235ca2557c0, 280, 1, @CurrentDateTime, @EndOfTime)
, (27820, 'Prairie Point', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cf5143944dc9240403a27518a311956c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27821, 'Prairie Rose', [DataLoadSimulation].[GetStateProvinceID] ('ND'), 0xe6100000010c890f47b2a2684740fdb0941b7b3558c0, 73, 1, @CurrentDateTime, @EndOfTime)
, (27822, 'Prairie View', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c47c263e4d1aa4140e0be6955266157c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27823, 'Prairie View', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c0413c9a18fea4340dbbc1699a5e458c0, 134, 1, @CurrentDateTime, @EndOfTime)
, (27824, 'Prairie View', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010ce992bb197f1945403e48050429fd55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27825, 'Prairie View', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cb11303c9e0173e40a2693f0837ff57c0, 5576, 1, @CurrentDateTime, @EndOfTime)
, (27826, 'Prairie Village', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c6eabb420ef7e4340dc7179628ca857c0, 21447, 1, @CurrentDateTime, @EndOfTime)
, (27827, 'Prairieburg', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010ca0da858b811e45402519de5108db56c0, 178, 1, @CurrentDateTime, @EndOfTime)
, (27828, 'Prairieville', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cb7195d948f4d3e402cafa6fc35be56c0, 26895, 1, @CurrentDateTime, @EndOfTime)
, (27829, 'Prathersville', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010ceef0321e00a843400e5bc4c16f9157c0, 124, 1, @CurrentDateTime, @EndOfTime)
, (27830, 'Pratt', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c4ae0c5b1e41a4340a3e47a80935854c0, 602, 1, @CurrentDateTime, @EndOfTime)
, (27831, 'Pratt', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cc314408c6bd2424086144db134af58c0, 6835, 1, @CurrentDateTime, @EndOfTime)
, (27832, 'Pratts', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c3c91161d7f2c43401732b2bf479153c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27833, 'Prattsburgh', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c9eba4d1311434540795677d17c5253c0, 656, 1, @CurrentDateTime, @EndOfTime)
, (27834, 'Prattsville', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cfdc9ce914b2845406e45ac0fb59b52c0, 355, 1, @CurrentDateTime, @EndOfTime)
, (27835, 'Prattsville', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c441a70f14b284140c944a56c6c2357c0, 305, 1, @CurrentDateTime, @EndOfTime)
, (27836, 'Prattville', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c789ca223b91a444086860f36064a5ec0, 33, 1, @CurrentDateTime, @EndOfTime)
, (27837, 'Prattville', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c7905a227653b404046c549ab6b9d55c0, 33960, 1, @CurrentDateTime, @EndOfTime)
, (27838, 'Pray', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c5bfcb7dcaab046403ddd2f559fab5bc0, 681, 1, @CurrentDateTime, @EndOfTime)
, (27839, 'Preble', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010cb4df7fd01f5e4540199359187d0953c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27840, 'Premont', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c669c2bef4f5c3b40acf24e4fe98758c0, 2653, 1, @CurrentDateTime, @EndOfTime)
, (27841, 'Prentice', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c4f5546c8e5c546403fc2d5a6569256c0, 660, 1, @CurrentDateTime, @EndOfTime)
, (27842, 'Prentiss', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010ce49de85f37993f4084189e4d7d7756c0, 1081, 1, @CurrentDateTime, @EndOfTime)
, (27843, 'Prescott', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010cb8f589f2bbe64040bc45bb65625857c0, 3296, 1, @CurrentDateTime, @EndOfTime)
, (27844, 'Prescott', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c0982114592184640fcd357a192fb54c0, 266, 1, @CurrentDateTime, @EndOfTime)
, (27845, 'Prescott', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cd272a087da5f46403345ca60563357c0, 4258, 1, @CurrentDateTime, @EndOfTime)
, (27846, 'Prescott', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c42340411f3824440bf7ff3e244a757c0, 257, 1, @CurrentDateTime, @EndOfTime)
, (27847, 'Prescott', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c828bba7b2508434034d93f4f83ac57c0, 264, 1, @CurrentDateTime, @EndOfTime)
, (27848, 'Prescott', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c14f538c258264740f7b2486e28945dc0, 318, 1, @CurrentDateTime, @EndOfTime)
, (27849, 'Prescott', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c4d373fb445064740284fb406cab85ec0, 55, 1, @CurrentDateTime, @EndOfTime)
, (27850, 'Prescott', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010c370653831f45414008e6e8f1fb1d5cc0, 39843, 1, @CurrentDateTime, @EndOfTime)
, (27851, 'Prescott Valley', [DataLoadSimulation].[GetStateProvinceID] ('AZ'), 0xe6100000010cf521b946154e4140446adac534145cc0, 38822, 1, @CurrentDateTime, @EndOfTime)
, (27852, 'Presho', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c5b65016e71f44540d269824dc20359c0, 497, 1, @CurrentDateTime, @EndOfTime)
, (27853, 'Presidential Lakes Estates', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c713c9f01f5f443401857016322a452c0, 2365, 1, @CurrentDateTime, @EndOfTime)
, (27854, 'Presidio', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c591d948b8c8f3d4089b48d3fd1175ac0, 4426, 1, @CurrentDateTime, @EndOfTime)
, (27855, 'Presque Isle', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c56c50a6defa6464044696ff085de54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27856, 'Presque Isle', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c83c2a04ca31f47408a8e8939ad6e56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27857, 'Presque Isle', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c4149810530574740c8505fe0030151c0, 9692, 1, @CurrentDateTime, @EndOfTime)
, (27858, 'Presque Isle Harbor', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c466e974748a94640b42c4e6b09df54c0, 600, 1, @CurrentDateTime, @EndOfTime)
, (27859, 'Presquille', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010ceb1f9feb56903d400d2c91555ba956c0, 1807, 1, @CurrentDateTime, @EndOfTime)
, (27860, 'Prestbury', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c55a4c2d842e4444018601f9dba1a56c0, 1722, 1, @CurrentDateTime, @EndOfTime)
, (27861, 'Presto', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cfe9364c2d42f444078f75b968a0754c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27862, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010ccd2ecece5844454003209331e3e752c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27863, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c74b91c0afa7040403bd33a600d3556c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27864, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010cef66576b7208404020d4450a652255c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27865, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c903f620509c34740abda24f5547b5ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27866, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c95704a7c93db414001234406fd0058c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27867, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c6dbf21f9eff040408dabdbea832858c0, 2096, 1, @CurrentDateTime, @EndOfTime)
, (27868, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010c91538550ef7443407b00416fe0c35cc0, 78, 1, @CurrentDateTime, @EndOfTime)
, (27869, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010cbdd584fe530c4540e7a6727f1af85bc0, 5204, 1, @CurrentDateTime, @EndOfTime)
, (27870, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c6191baf8365b4340c9bc9f643cfa52c0, 719, 1, @CurrentDateTime, @EndOfTime)
, (27871, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c111ec8d523e14240310bed9c66a358c0, 158, 1, @CurrentDateTime, @EndOfTime)
, (27872, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c2039e34570064540bf58294e7f9a56c0, 1012, 1, @CurrentDateTime, @EndOfTime)
, (27873, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010caa72eb7fcad54540e180f167530557c0, 1325, 1, @CurrentDateTime, @EndOfTime)
, (27874, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c4b34924e6ef842401b423ae14a4d57c0, 223, 1, @CurrentDateTime, @EndOfTime)
, (27875, 'Preston', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c6b798ac168044440c3746be319e157c0, 28, 1, @CurrentDateTime, @EndOfTime)
, (27876, 'Preston Heights', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c5c8242f3efbe44404152faf83a0556c0, 2575, 1, @CurrentDateTime, @EndOfTime)
, (27877, 'Prestonsburg', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c3f7f901b34d542409311610d61b154c0, 3255, 1, @CurrentDateTime, @EndOfTime)
, (27878, 'Prestonville', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c87a9882e035743409c2a29c12c4c55c0, 161, 1, @CurrentDateTime, @EndOfTime)
, (27879, 'Pretty Prairie', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cb537537cd7e342400749fa0f448158c0, 680, 1, @CurrentDateTime, @EndOfTime)
, (27880, 'Prewitt', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c145d177e70ae41403646a11bd0025bc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27881, 'Price', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c541b9c887e8c43406bfde3735dfd52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27882, 'Price', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c30140bd7fe44424065e5f27a8bfa53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27883, 'Price', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c0907318628114040def247075abc57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27884, 'Price', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010ca2f721ca724a46406c5d6a847ec356c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27885, 'Price', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010cb3b45373b9cc4340861854c0e2b35bc0, 8715, 1, @CurrentDateTime, @EndOfTime)
, (27886, 'Pricedale', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cc00413245b4a3f40dc566941de9256c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27887, 'Pricedale', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010cdbd726bad3104440f697dd9307f653c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27888, 'Prices Fork', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010ca749df5adc9a42402ab2310a5d1f54c0, 1066, 1, @CurrentDateTime, @EndOfTime)
, (27889, 'Priceville', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c0ead0441364341401356743543b955c0, 2658, 1, @CurrentDateTime, @EndOfTime)
, (27890, 'Prichard', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c954ad3fb21bd3e401d6107840c0556c0, 22659, 1, @CurrentDateTime, @EndOfTime)
, (27891, 'Prichard', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c11e56613bb1e43409d5c9dad4da654c0, 527, 1, @CurrentDateTime, @EndOfTime)
, (27892, 'Prichard', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cef867eb78a5941408929ecfda18f56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27893, 'Priddy', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c292b3c1ee9ac3f4014ba015592a058c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27894, 'Pride', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c39a407f478c742401000c1c103f955c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27895, 'Pridgen', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c850f801365b23f4039ad252e11bb54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27896, 'Prien', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010cf87eb4498f2e3e407a51bb5f855157c0, 7810, 1, @CurrentDateTime, @EndOfTime)
, (27897, 'Priest Point', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010ce51c86a0b4044840aa6ba3f00f905ec0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27898, 'Priest River', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010cd7c397892217484021c84109333a5dc0, 1751, 1, @CurrentDateTime, @EndOfTime)
, (27899, 'Prim', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c8807dedad3d8414013888d68f10657c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27900, 'Primera', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c7568a219d5393a4093b0cae0837058c0, 4070, 1, @CurrentDateTime, @EndOfTime)
, (27901, 'Primghar', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c72a83a3f208b45404dc0af9124e857c0, 909, 1, @CurrentDateTime, @EndOfTime)
, (27902, 'Primrose', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c26570cb2c0cf4440467c27663d8f58c0, 61, 1, @CurrentDateTime, @EndOfTime)
, (27903, 'Primrose', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c89754fc35c9240409d4c37e47a2f55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27904, 'Primrose', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010c75841d10327445402425e252ba6a56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27905, 'Primrose', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c3b0ac67718cd42402b99ad06f2e654c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27906, 'Primrose', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c5792e11d852d4440dc076a42241154c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27907, 'Prince', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010ce31126d6f3ed4240f04119f46f4354c0, 116, 1, @CurrentDateTime, @EndOfTime)
, (27908, 'Prince Frederick', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cc06268d02b454340844e63d6662553c0, 2538, 1, @CurrentDateTime, @EndOfTime)
, (27909, 'Prince George', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c0e935ff5369c4240cdcaf6216f5253c0, 2066, 1, @CurrentDateTime, @EndOfTime)
, (27910, 'Princes Lakes', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c726f7ec344ad434083bd2e68468655c0, 1312, 1, @CurrentDateTime, @EndOfTime)
, (27911, 'Princess Anne', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010ccef0b09af819434083f755b950ec52c0, 3290, 1, @CurrentDateTime, @EndOfTime)
, (27912, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c222b099ae0ae42409e7532dd904654c0, 6432, 1, @CurrentDateTime, @EndOfTime)
, (27913, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cedaa51595ed644400af4893cc99556c0, 886, 1, @CurrentDateTime, @EndOfTime)
, (27914, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010cad6ef59cf4c8464072dcce63396557c0, 4698, 1, @CurrentDateTime, @EndOfTime)
, (27915, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010cf0f15366943e4340268a90ba9dd157c0, 277, 1, @CurrentDateTime, @EndOfTime)
, (27916, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010c9dbf643e7b2d43400b900d4952e455c0, 8644, 1, @CurrentDateTime, @EndOfTime)
, (27917, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c1536a8a21daf4440390d5185bf5d56c0, 7660, 1, @CurrentDateTime, @EndOfTime)
, (27918, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cfbeb70cf4e334440815770e4266557c0, 1166, 1, @CurrentDateTime, @EndOfTime)
, (27919, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010cd1ff1774e7ec4540c8cd154acb4756c0, 1214, 1, @CurrentDateTime, @EndOfTime)
, (27920, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010cfa8271cba22c44404ea14ed42daa52c0, 12307, 1, @CurrentDateTime, @EndOfTime)
, (27921, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cea5102ac9f3f4140297b4b395f9254c0, 62, 1, @CurrentDateTime, @EndOfTime)
, (27922, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c7a4db450d78939404f7974232c1a54c0, 22038, 1, @CurrentDateTime, @EndOfTime)
, (27923, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010cc198e3cbfa8d42406039420672f855c0, 6329, 1, @CurrentDateTime, @EndOfTime)
, (27924, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c1690acb2a5bb41407db83f72468a53c0, 1194, 1, @CurrentDateTime, @EndOfTime)
, (27925, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c08a23891aafd4040da3c0e83f92757c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27926, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010c23df008e989c46407366bb429fe450c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27927, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c458fceaf9cb34340c4b12e6ea3805ec0, 303, 1, @CurrentDateTime, @EndOfTime)
, (27928, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('ID'), 0xe6100000010c714518f5ff74474022cc481861355dc0, 148, 1, @CurrentDateTime, @EndOfTime)
, (27929, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cd57d5b0b0e9740405e013beddf1f58c0, 6807, 1, @CurrentDateTime, @EndOfTime)
, (27930, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c22c1f979f8244740fa0560a868de55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27931, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c703f85c88e9f45405719d709f9a45dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27932, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cfe8815246c4944403aa5cd821a2d58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27933, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c981359106f394540583a1f9e25f851c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27934, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c620097b66e4b40408d2f359df86057c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27935, 'Princeton', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c9d082ccab6b143405ff70c970b1d55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27936, 'Princeton Junction', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010ca9c4d0459e284440557e6319aca752c0, 2465, 1, @CurrentDateTime, @EndOfTime)
, (27937, 'Princetown', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010caf1d311fb56345407ef1fbed218452c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27938, 'Princeville', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010c692fec7ab3373640c1a1010653ef63c0, 2158, 1, @CurrentDateTime, @EndOfTime)
, (27939, 'Princeville', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010ce7bc6b75def14140c8282a760f6253c0, 2082, 1, @CurrentDateTime, @EndOfTime)
, (27940, 'Princeville', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c46d49f58027744402b18f08d7c7056c0, 1738, 1, @CurrentDateTime, @EndOfTime)
, (27941, 'Prineville', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010c99a0866f612646401867c2e567355ec0, 9253, 1, @CurrentDateTime, @EndOfTime)
, (27942, 'Pringle', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ce81cf2857ff9414092dcaba0335d59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27943, 'Pringle', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c9f28bffb99a3444005d957c36af952c0, 979, 1, @CurrentDateTime, @EndOfTime)
, (27944, 'Pringle', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c4f0d8f58e6cd454035cb0aea00e659c0, 112, 1, @CurrentDateTime, @EndOfTime)
, (27945, 'Prinsburg', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010cfcb03962887746405f4d542500cc57c0, 497, 1, @CurrentDateTime, @EndOfTime)
, (27946, 'Prior Lake', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c4aeb14504d5b4640e18739f70d5b57c0, 22796, 1, @CurrentDateTime, @EndOfTime)
, (27947, 'Prismatic', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010cd3ce7a42c04b40400e40b4a0412f56c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27948, 'Pritchett', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c91eae005b6544040413278f32fc157c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27949, 'Pritchett', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c5b762dc665af42402728ea7104b759c0, 140, 1, @CurrentDateTime, @EndOfTime)
, (27950, 'Privateer', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c3447fbc4a6ea404004f97e0f831a54c0, 2349, 1, @CurrentDateTime, @EndOfTime)
, (27951, 'Proberta', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c3e528e13700a4440e7d95141ea8a5ec0, 267, 1, @CurrentDateTime, @EndOfTime)
, (27952, 'Proctor', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c9f3557bf2dfc414010a3576b47b357c0, 231, 1, @CurrentDateTime, @EndOfTime)
, (27953, 'Proctor', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010cf840e1a2496744403755f7c8e6bc59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27954, 'Proctor', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ccba3761ac4fc3f40d019074d819b58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27955, 'Proctor', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010c3a4030478fd445400bc91352484252c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27956, 'Proctor', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c93910e6a1adb43406c81f398b73454c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27957, 'Proctor', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010cb27d6da23bf24740eec8fdb38b935cc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27958, 'Proctor', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010ca7e03a10a35f4740b62fa0176e0e57c0, 3057, 1, @CurrentDateTime, @EndOfTime)
, (27959, 'Proctorsville', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010c26b73709efb045401217dbffdb2852c0, 454, 1, @CurrentDateTime, @EndOfTime)
, (27960, 'Proctorville', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c0237418af03743402a7dd756229854c0, 574, 1, @CurrentDateTime, @EndOfTime)
, (27961, 'Proctorville', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c2a2389b9ff3c41402e1801ba54c253c0, 117, 1, @CurrentDateTime, @EndOfTime)
, (27962, 'Progreso', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c43f3efe9a0173a40257c4a29437d58c0, 5507, 1, @CurrentDateTime, @EndOfTime)
, (27963, 'Progress', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c8c02339534244140574c5b12d6b359c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27964, 'Promise City', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010c77c13b54ae5f444076638bee6a4957c0, 111, 1, @CurrentDateTime, @EndOfTime)
, (27965, 'Promised Land', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010c5504ee2f71104140b7291e17558f54c0, 511, 1, @CurrentDateTime, @EndOfTime)
, (27966, 'Prompton', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c817fa54e9bca4440d19739b8cfd452c0, 250, 1, @CurrentDateTime, @EndOfTime)
, (27967, 'Pronto', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010c36b9ce75d0764440685e6974e2835dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27968, 'Prophetstown', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c85718115f1d54440dbccd71beb7b56c0, 2080, 1, @CurrentDateTime, @EndOfTime)
, (27969, 'Prosit', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010cce458d53be7f4740559d7a49882757c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27970, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c18a023a8d08341408df4fd2f32c055c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27971, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010ce2c56757c6a642400a229c60c9a353c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27972, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010cac6d571f60d843407992060c611353c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27973, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('OR'), 0xe6100000010cfc49c67b1f604540da0d91894a9f5ec0, 455, 1, @CurrentDateTime, @EndOfTime)
, (27974, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010c9213dcfe4bc04440fa23b149a33e52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27975, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('ME'), 0xe6100000010cb5b810f5cc46464050e27327583751c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27976, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c7362b433f1a64540051d0824bcc952c0, 291, 1, @CurrentDateTime, @EndOfTime)
, (27977, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c887a66eec6734440339f18fef80254c0, 1169, 1, @CurrentDateTime, @EndOfTime)
, (27978, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c39622d3e052c43406a300dc3476655c0, 4698, 1, @CurrentDateTime, @EndOfTime)
, (27979, 'Prospect', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c3595eaa7a4394440f15c84ce10cc54c0, 1112, 1, @CurrentDateTime, @EndOfTime)
, (27980, 'Prospect Heights', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c045372f3320c4540beae152301fc55c0, 16256, 1, @CurrentDateTime, @EndOfTime)
, (27981, 'Prospect Heights', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c433866d993364340ec27ad09334f5ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27982, 'Prospect Park', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c7263c44f2dc244400f4cc9cdcb8d53c0, 327, 1, @CurrentDateTime, @EndOfTime)
, (27983, 'Prospect Park', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010ce479ba04f17744401b75bee9278b52c0, 5865, 1, @CurrentDateTime, @EndOfTime)
, (27984, 'Prospect Park', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c58378364a6f14340fa8e2b3fbad352c0, 6454, 1, @CurrentDateTime, @EndOfTime)
, (27985, 'Prospect Plains', [DataLoadSimulation].[GetStateProvinceID] ('NJ'), 0xe6100000010c04bf57be782944402f79f29f249e52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27986, 'Prospect Valley', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c1c188a856b094440b1d2eea18e1a5ac0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27987, 'Prospectville', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c634ff16e1b1b44402d5a25fde2cb52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27988, 'Prosper', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cf9b369b63c9e4040e89fe062453358c0, 9423, 1, @CurrentDateTime, @EndOfTime)
, (27989, 'Prosperity', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c148953f712da3e40e18d16b1997c55c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27990, 'Prosperity', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cafc3e28112eb424071d701c6e94c54c0, 1498, 1, @CurrentDateTime, @EndOfTime)
, (27991, 'Prosperity', [DataLoadSimulation].[GetStateProvinceID] ('SC'), 0xe6100000010cb0a5ec99ca1a4140d8a1f54b1f6254c0, 1180, 1, @CurrentDateTime, @EndOfTime)
, (27992, 'Prosser', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010cb7103f5af757444059ddea39e9a458c0, 66, 1, @CurrentDateTime, @EndOfTime)
, (27993, 'Prosser', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c4b299e69781a4740c78a750536f15dc0, 5714, 1, @CurrentDateTime, @EndOfTime)
, (27994, 'Protection', [DataLoadSimulation].[GetStateProvinceID] ('KS'), 0xe6100000010c583849f3c799424033e197faf9de58c0, 514, 1, @CurrentDateTime, @EndOfTime)
, (27995, 'Protem', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010cbbcbeac2b443424017d7f84cf63657c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (27996, 'Protivin', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cf7e05a92a89b45406479b2f6d20557c0, 283, 1, @CurrentDateTime, @EndOfTime)
, (27997, 'Provencal', [DataLoadSimulation].[GetStateProvinceID] ('LA'), 0xe6100000010c0492b06f27a73f4044882b67ef4c57c0, 611, 1, @CurrentDateTime, @EndOfTime)
, (27998, 'Providence', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010cd9017c5cc02b40403b57efcbf4f155c0, 223, 1, @CurrentDateTime, @EndOfTime)
, (27999, 'Providence', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c1bd82ac1e2b242403b2e4f8cd1f055c0, 3193, 1, @CurrentDateTime, @EndOfTime)
, (28000, 'Providence', [DataLoadSimulation].[GetStateProvinceID] ('RI'), 0xe6100000010c57618e7978e94440b14a8ee06bda51c0, 178042, 1, @CurrentDateTime, @EndOfTime)
COMMIT
GO
BEGIN TRANSACTION
DECLARE @CurrentDateTime datetime2(7) = '20200101'
DECLARE @EndOfTime datetime2(7) = '99991231 23:59:59.9999999'
INSERT [Application].Cities (CityID, CityName, StateProvinceID, [Location], LatestRecordedPopulation, LastEditedBy, ValidFrom, ValidTo)
VALUES (28001, 'Providence', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c5342b0aa5ed8434086a6913b11f852c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28002, 'Providence', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c0ff5166aa8404240aa4f28fab2d753c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28003, 'Providence', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010cb33ff5b468da4440e59b6d6e4cf45bc0, 7075, 1, @CurrentDateTime, @EndOfTime)
, (28004, 'Providence', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010ce3b55c4766273c40f1bc546c4c7e54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28005, 'Providence', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c76711b0de09d4040079b3a8f8a3d58c0, 4786, 1, @CurrentDateTime, @EndOfTime)
, (28006, 'Providence Forge', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010ce1b8e7548db84240d4505903ca4253c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28007, 'Provincetown', [DataLoadSimulation].[GetStateProvinceID] ('MA'), 0xe6100000010c5c74b2d47a074540b515fbcb6e8b51c0, 2642, 1, @CurrentDateTime, @EndOfTime)
, (28008, 'Provo', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010c95ef1989d0044140de5a817ce48657c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28009, 'Provo', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010cac6b596375984540d94f1086cbf459c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28010, 'Provo', [DataLoadSimulation].[GetStateProvinceID] ('UT'), 0xe6100000010caaaff897ee1d44401734886a25ea5bc0, 112488, 1, @CurrentDateTime, @EndOfTime)
, (28011, 'Prudenville', [DataLoadSimulation].[GetStateProvinceID] ('MI'), 0xe6100000010c0b1c1a6030264640592437d4b92955c0, 1682, 1, @CurrentDateTime, @EndOfTime)
, (28012, 'Prudhoe Bay', [DataLoadSimulation].[GetStateProvinceID] ('AK'), 0xe6100000010c4599b27856905140870f3686ca8a62c0, 2174, 1, @CurrentDateTime, @EndOfTime)
, (28013, 'Prue', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010cad479e82fc1e4240e5a40c29ca1558c0, 465, 1, @CurrentDateTime, @EndOfTime)
, (28014, 'Prunedale', [DataLoadSimulation].[GetStateProvinceID] ('CA'), 0xe6100000010c3e85121c4d6342407e29f2dadb6a5ec0, 17560, 1, @CurrentDateTime, @EndOfTime)
, (28015, 'Pruntytown', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010cbc0276dabfaa434053060e68e90454c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28016, 'Pryor', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010ccdc868718226424002cac1d50ad457c0, 9539, 1, @CurrentDateTime, @EndOfTime)
, (28017, 'Pryor', [DataLoadSimulation].[GetStateProvinceID] ('MT'), 0xe6100000010c6bb6f292ffb646406deb02b91f225bc0, 618, 1, @CurrentDateTime, @EndOfTime)
, (28018, 'Pryorsburg', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c546ea296e6574240d96b30c3b52d56c0, 311, 1, @CurrentDateTime, @EndOfTime)
, (28019, 'Puuwai', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010c93dfa293a5e635408c61f316740664c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28020, 'Puako', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010c3d76bc6eb6f83340ca2ce7f7e27a63c0, 772, 1, @CurrentDateTime, @EndOfTime)
, (28021, 'Puckett', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010c9af4adc55d0a4040d96b8b7ca87156c0, 316, 1, @CurrentDateTime, @EndOfTime)
, (28022, 'Pueblito', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010ce5c5d33c91094240d8101c97f1845ac0, 91, 1, @CurrentDateTime, @EndOfTime)
, (28023, 'Pueblito del Carmen', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c325a475513083240b2de03cf988a50c0, 572, 1, @CurrentDateTime, @EndOfTime)
, (28024, 'Pueblito Del Ro', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c404750a15f3a32401d56b8e5237750c0, 1310, 1, @CurrentDateTime, @EndOfTime)
, (28025, 'Pueblitos', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c4fd08140c24f4140354b5d8dc7b15ac0, 794, 1, @CurrentDateTime, @EndOfTime)
, (28026, 'Pueblo', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cdfe75322e4a941402454ba05dc5b5ac0, 125, 1, @CurrentDateTime, @EndOfTime)
, (28027, 'Pueblo', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c8647d1b991204340c669882afc265ac0, 106595, 1, @CurrentDateTime, @EndOfTime)
, (28028, 'Pueblo Nuevo', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c12dc48d9227d3b40a5be2cedd4d358c0, 521, 1, @CurrentDateTime, @EndOfTime)
, (28029, 'Pueblo Pintado', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010cf6afc18674fb4140797a8e900dea5ac0, 192, 1, @CurrentDateTime, @EndOfTime)
, (28030, 'Pueblo West', [DataLoadSimulation].[GetStateProvinceID] ('CO'), 0xe6100000010c1ac638dacc2c43402682829c412e5ac0, 29637, 1, @CurrentDateTime, @EndOfTime)
, (28031, 'Puente', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c137aa29009b94140ff70fcf5af7859c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28032, 'Puerto de Luna', [DataLoadSimulation].[GetStateProvinceID] ('NM'), 0xe6100000010c390a1005336a4140fa6cd38ed1275ac0, 141, 1, @CurrentDateTime, @EndOfTime)
, (28033, 'Puerto Real', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c4001ca95301332405c3233d8f9cb50c0, 5983, 1, @CurrentDateTime, @EndOfTime)
, (28034, 'Pukwana', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c59cae83697e3454050ad19749dcb58c0, 285, 1, @CurrentDateTime, @EndOfTime)
, (28035, 'Pulaski', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c9131d2e693c845401907f2472c0853c0, 2365, 1, @CurrentDateTime, @EndOfTime)
, (28036, 'Pulaski', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010ccbadff290b56464062dba2cc860f56c0, 3539, 1, @CurrentDateTime, @EndOfTime)
, (28037, 'Pulaski', [DataLoadSimulation].[GetStateProvinceID] ('IA'), 0xe6100000010cb5a9ba47365944404fc0c0bd7c1157c0, 260, 1, @CurrentDateTime, @EndOfTime)
, (28038, 'Pulaski', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010cc5443987218642408908ff22e83154c0, 9086, 1, @CurrentDateTime, @EndOfTime)
, (28039, 'Pulaski', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010ceadacd42f13140402336b3f13b7d54c0, 266, 1, @CurrentDateTime, @EndOfTime)
, (28040, 'Pulaski', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c32152c1f93994140a4575e4df9c155c0, 7870, 1, @CurrentDateTime, @EndOfTime)
, (28041, 'Pulaski', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010c08759142599b42408918c0a52d4d56c0, 206, 1, @CurrentDateTime, @EndOfTime)
, (28042, 'Pulaski', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010cbf8e49905bc144401e92109b7e2055c0, 132, 1, @CurrentDateTime, @EndOfTime)
, (28043, 'Pulaski', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010ced4218e4d3224040658632f98b6656c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28044, 'Pulcifer', [DataLoadSimulation].[GetStateProvinceID] ('WI'), 0xe6100000010ce7d4df5c0d6c4640594e42e90b1756c0, 134, 1, @CurrentDateTime, @EndOfTime)
, (28045, 'Pullman', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010c0af31e679a5d474012b644d37e4b5dc0, 29799, 1, @CurrentDateTime, @EndOfTime)
, (28046, 'Pullman', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c33558be31b99414036f5cb71386d59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28047, 'Pullman', [DataLoadSimulation].[GetStateProvinceID] ('WV'), 0xe6100000010c63f20698f9974340938fdd05ca3c54c0, 154, 1, @CurrentDateTime, @EndOfTime)
, (28048, 'Pulteney', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010ceb4ceb80354345406901da56b34a53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28049, 'Pultneyville', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010ca16fc108d0a3454024e131f2e84b53c0, 698, 1, @CurrentDateTime, @EndOfTime)
, (28050, 'Pumphrey', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c1eb97f76d19b4340b2f677b6c72853c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28051, 'Pumpkin Center', [DataLoadSimulation].[GetStateProvinceID] ('NC'), 0xe6100000010c068eba8c516541407a223e66d65753c0, 2222, 1, @CurrentDateTime, @EndOfTime)
, (28052, 'Pumpville', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cfa48a5338bf13d4032b7312c356f59c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28053, 'Punaluu', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010c22156b5d0f2333400a6fc5b4257063c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28054, 'Punalu''u', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010cf1a54b5a4c953540265e54417bbc63c0, 1164, 1, @CurrentDateTime, @EndOfTime)
, (28055, 'Pungoteague', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010ccf8a0343b1d04240681ab91311f452c0, 347, 1, @CurrentDateTime, @EndOfTime)
, (28056, 'Punta Gorda', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c6e5b4a4c06ee3a4096157948e78254c0, 16641, 1, @CurrentDateTime, @EndOfTime)
, (28057, 'Punta Rassa', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010cc1a09630e47c3a40c8d34dbdc98054c0, 1750, 1, @CurrentDateTime, @EndOfTime)
, (28058, 'Punta Santiago', [DataLoadSimulation].[GetStateProvinceID] ('PR'), 0xe6100000010c663623de952a3240801365cae26f50c0, 4964, 1, @CurrentDateTime, @EndOfTime)
, (28059, 'Punxsutawney', [DataLoadSimulation].[GetStateProvinceID] ('PA'), 0xe6100000010c81c52b5aca7844406bb180ae22be53c0, 5962, 1, @CurrentDateTime, @EndOfTime)
, (28060, 'Puposky', [DataLoadSimulation].[GetStateProvinceID] ('MN'), 0xe6100000010c44b86eefbfd64740fe3beccf0fba57c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28061, 'Pupukea', [DataLoadSimulation].[GetStateProvinceID] ('HI'), 0xe6100000010ceb1791cdfaa535408b37328ffcc163c0, 4551, 1, @CurrentDateTime, @EndOfTime)
, (28062, 'Purcell', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c9bbe5bb74182414059465a92a25858c0, 5884, 1, @CurrentDateTime, @EndOfTime)
, (28063, 'Purcell', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c52c4d8f8029f4240e3f49ac3da9b57c0, 408, 1, @CurrentDateTime, @EndOfTime)
, (28064, 'Purcellville', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c58422dbc81914340dadc3de5bd6d53c0, 7727, 1, @CurrentDateTime, @EndOfTime)
, (28065, 'Purchase', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c5874eb353d85444059631a97bb6d52c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28066, 'Purdin', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c49337106daf94340e65b1fd69b4a57c0, 190, 1, @CurrentDateTime, @EndOfTime)
, (28067, 'Purdon', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010ca16417b1f4f23f40999b6f44772758c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28068, 'Purdum', [DataLoadSimulation].[GetStateProvinceID] ('NE'), 0xe6100000010c4dde5bec510845405ac7a7b68a1059c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28069, 'Purdy', [DataLoadSimulation].[GetStateProvinceID] ('VA'), 0xe6100000010c0d96a0754369424083ae3374a26553c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28070, 'Purdy', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c7bace74c245c4140904e83c01f6758c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28071, 'Purdy', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010cf80f3345cab147403845ecb806a85ec0, 1544, 1, @CurrentDateTime, @EndOfTime)
, (28072, 'Purdy', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c03fc64d69c684240c2dd59bbed7a57c0, 1098, 1, @CurrentDateTime, @EndOfTime)
, (28073, 'Purley', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cad365a69ad8b404017a87b53c7d057c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28074, 'Purves', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c195cce007200404068bfa4e74c9158c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28075, 'Purvis', [DataLoadSimulation].[GetStateProvinceID] ('MS'), 0xe6100000010ca823360eab243f40b35593f1395a56c0, 2175, 1, @CurrentDateTime, @EndOfTime)
, (28076, 'Puryear', [DataLoadSimulation].[GetStateProvinceID] ('TN'), 0xe6100000010c188ff74fdc384240069d103a681556c0, 671, 1, @CurrentDateTime, @EndOfTime)
, (28077, 'Put-in-Bay', [DataLoadSimulation].[GetStateProvinceID] ('OH'), 0xe6100000010c64c3e457bdd34440f0daa50d87b454c0, 138, 1, @CurrentDateTime, @EndOfTime)
, (28078, 'Putnam', [DataLoadSimulation].[GetStateProvinceID] ('CT'), 0xe6100000010c1ed2b9ec21f544401935046c2cfa51c0, 7214, 1, @CurrentDateTime, @EndOfTime)
, (28079, 'Putnam', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c72fe81cd94df45407780cc73695952c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28080, 'Putnam', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c41d7be805ec843408f102f99741d53c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28081, 'Putnam', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010c2c0483b57b2f4040b289271653cc58c0, 94, 1, @CurrentDateTime, @EndOfTime)
, (28082, 'Putnam', [DataLoadSimulation].[GetStateProvinceID] ('OK'), 0xe6100000010c90b36daf05ee4140c4b66b6080bf58c0, 29, 1, @CurrentDateTime, @EndOfTime)
, (28083, 'Putnam', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c785e2a36e6024040a521f47d020256c0, 193, 1, @CurrentDateTime, @EndOfTime)
, (28084, 'Putnam Hall', [DataLoadSimulation].[GetStateProvinceID] ('FL'), 0xe6100000010c02a5fcff93bc3d40c72fbc92647d54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28085, 'Putnam Lake', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c82bf041324bb44406bd8ef89f56252c0, 3844, 1, @CurrentDateTime, @EndOfTime)
, (28086, 'Putnam Valley', [DataLoadSimulation].[GetStateProvinceID] ('NY'), 0xe6100000010c1eeb98a9ffaa444050786407f07752c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28087, 'Putnamville', [DataLoadSimulation].[GetStateProvinceID] ('IN'), 0xe6100000010cadbc89c67fc94340ce88d2de60b755c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28088, 'Putney', [DataLoadSimulation].[GetStateProvinceID] ('SD'), 0xe6100000010c737511f0b5c74640e93ddf60398b58c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28089, 'Putney', [DataLoadSimulation].[GetStateProvinceID] ('KY'), 0xe6100000010c50ebec1ae37342400e61a17b7bce54c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28090, 'Putney', [DataLoadSimulation].[GetStateProvinceID] ('VT'), 0xe6100000010c77853e58c67c4540791f4773642152c0, 523, 1, @CurrentDateTime, @EndOfTime)
, (28091, 'Putney', [DataLoadSimulation].[GetStateProvinceID] ('GA'), 0xe6100000010c2f58607e5d783f40ccd07822880755c0, 2898, 1, @CurrentDateTime, @EndOfTime)
, (28092, 'Puxico', [DataLoadSimulation].[GetStateProvinceID] ('MO'), 0xe6100000010c26c9ce36927942408e84c7c8238a56c0, 881, 1, @CurrentDateTime, @EndOfTime)
, (28093, 'Puyallup', [DataLoadSimulation].[GetStateProvinceID] ('WA'), 0xe6100000010cd670917bba9747405785bcd4be925ec0, 37022, 1, @CurrentDateTime, @EndOfTime)
, (28094, 'Pyatt', [DataLoadSimulation].[GetStateProvinceID] ('AR'), 0xe6100000010ce5b919c9791f424091aa37b4123657c0, 221, 1, @CurrentDateTime, @EndOfTime)
, (28095, 'Pyatts', [DataLoadSimulation].[GetStateProvinceID] ('IL'), 0xe6100000010cd8f335cb650043401473b5bac15756c0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28096, 'Pylesville', [DataLoadSimulation].[GetStateProvinceID] ('MD'), 0xe6100000010c15f2f7414cd843406a98eb7edf1753c0, 693, 1, @CurrentDateTime, @EndOfTime)
, (28097, 'Pyote', [DataLoadSimulation].[GetStateProvinceID] ('TX'), 0xe6100000010cf295404aec883f403759fed714c859c0, 114, 1, @CurrentDateTime, @EndOfTime)
, (28098, 'Pyramid', [DataLoadSimulation].[GetStateProvinceID] ('NV'), 0xe6100000010c1823128596094440cfd90242ebec5dc0, NULL, 1, @CurrentDateTime, @EndOfTime)
, (28099, 'Pyriton', [DataLoadSimulation].[GetStateProvinceID] ('AL'), 0xe6100000010c2cbccb457cae4040dccc32d55d7555c0, NULL, 1, @CurrentDateTime, @EndOfTime)
COMMIT
GO
```
|
Faner Hall located at 1000 Faner Drive, Carbondale, Illinois, named after Robert D. Faner, former English professor who died in the 1960s, is in the central part of the Southern Illinois University Carbondale campus, and houses the College of Liberal Arts (COLA), which includes multiple departments including the University Museum
Designed by Robert Geddes, Brecher, Qualls and Cunningham architects, in the Brutalist architecture style. Faner Hall is 914 feet long and four stories high. It acts as a "wall" between the old and new sections of campus.
In his novel, Straight Man, Richard Russo, former faculty member, describes Faner Hall this way- "so I follow, risking the possibility that I’ll get lost in the building’s legendary labyrinths. Social Sciences, the newest building on campus, was built in the midseventies, when there was money for both buildings and faculty. According to myth, the structure was designed to prevent student takeovers, and this may be true. A series of pods, it’s all zigzagging corridors and abrupt mezzanines that make it impossible to walk from one end of the building to another. At one point, if you’re on the first floor, either you have to go up two floors, over, and down again or you have to go outside the building and then in again in order to arrive at an office you can see from where you’re standing. The campus joke is that Lou Steinmetz has an office in the building but no one knows where."
Departments
Faner Hall houses many of the departments which belong to the University Core Curriculum as well as other areas of study. Departments include: Africana Studies, Anthropology, Art & Design, Communication Studies, Criminology & Criminal Justice, Economics, English, Geography & Environmental Resources, History, Languages, Cultures & International Trade, Linguistics, Paralegal Studies, Philosophy, Political Science and Sociology.
References
External links
List of Brutalist style structures
Southern Illinois University Carbondale
Carbondale, Illinois
Buildings and structures in Jackson County, Illinois
Buildings and structures completed in 1974
1974 establishments in Illinois
1970s architecture in the United States
Brutalist architecture in Illinois
Modernist architecture in Illinois
|
```c
/* This is dvipdfmx, an eXtended version of dvipdfm by Mark A. Wicks.
the dvipdfmx project team.
This program is free software; you can redistribute it and/or modify
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#include "dpx-tt_post.h"
#include <assert.h>
#include <stdlib.h>
#include "dpx-error.h"
#include "dpx-mem.h"
#include "dpx-sfnt.h"
static const char *macglyphorder[258];
/* offset from begenning of the post table */
#define NAME_STR_OFFSET 32
static int
read_v2_post_names (struct tt_post_table *post, sfnt *sfont)
{
USHORT i, idx, *indices, maxidx;
int len;
post->numberOfGlyphs = sfnt_get_ushort(sfont);
indices = NEW(post->numberOfGlyphs, USHORT);
maxidx = 257;
for (i = 0; i < post->numberOfGlyphs; i++) {
idx = sfnt_get_ushort(sfont);
if (idx >= 258) {
if (idx > maxidx)
maxidx = idx;
/* Tectonic: #if 0 stanza removed */
}
indices[i] = idx;
}
post->count = maxidx - 257;
if (post->count < 1) {
post->names = NULL;
} else {
post->names = NEW(post->count, char *);
for (i = 0; i < post->count; i++) { /* read Pascal strings */
len = sfnt_get_byte(sfont);
if (len > 0) {
post->names[i] = NEW(len + 1, char);
sfnt_read(post->names[i], len, sfont);
post->names[i][len] = 0;
} else {
post->names[i] = NULL;
}
}
}
post->glyphNamePtr = NEW(post->numberOfGlyphs, const char *);
for (i = 0; i < post->numberOfGlyphs; i++) {
idx = indices[i];
if (idx < 258) {
post->glyphNamePtr[i] = macglyphorder[idx];
} else if (idx - 258 < post->count) {
post->glyphNamePtr[i] = post->names[idx - 258];
} else {
dpx_warning("Invalid glyph name index number: %u (>= %u)",
idx, post->count + 258);
free(indices);
return -1;
}
}
free(indices);
return 0;
}
struct tt_post_table *
tt_read_post_table (sfnt *sfont)
{
struct tt_post_table *post;
/* offset = */ sfnt_locate_table(sfont, "post");
post = NEW(1, struct tt_post_table);
post->Version = sfnt_get_ulong(sfont); /* Fixed */
post->italicAngle = sfnt_get_ulong(sfont); /* Fixed */
post->underlinePosition = sfnt_get_short(sfont); /* FWord */
post->underlineThickness = sfnt_get_short(sfont); /* FWord */
post->isFixedPitch = sfnt_get_ulong(sfont);
post->minMemType42 = sfnt_get_ulong(sfont);
post->maxMemType42 = sfnt_get_ulong(sfont);
post->minMemType1 = sfnt_get_ulong(sfont);
post->maxMemType1 = sfnt_get_ulong(sfont);
post->numberOfGlyphs = 0;
post->glyphNamePtr = NULL;
post->count = 0;
post->names = NULL;
if (post->Version == 0x00010000UL) {
post->numberOfGlyphs = 258; /* wrong */
post->glyphNamePtr = macglyphorder;
} else if (post->Version == 0x00028000UL) {
dpx_warning("TrueType 'post' version 2.5 found (deprecated)");
} else if (post->Version == 0x00020000UL) {
if (read_v2_post_names(post, sfont) < 0) {
dpx_warning("Invalid version 2.0 'post' table");
tt_release_post_table(post);
post = NULL;
}
} else if (post->Version == 0x00030000UL || /* no glyph names provided */
post->Version == 0x00040000UL) { /* Apple format for printer-based fonts */
/* don't bother constructing char names, not sure if they'll ever be needed */
} else { /* some broken font files have 0x00000000UL and perhaps other values */
dpx_warning("Unknown 'post' version: %08X, assuming version 3.0", post->Version);
}
return post;
}
USHORT
tt_lookup_post_table (struct tt_post_table *post, const char *glyphname)
{
USHORT gid;
assert(post && glyphname);
for (gid = 0; gid < post->numberOfGlyphs; gid++) {
if (post->glyphNamePtr[gid] && streq_ptr(glyphname, post->glyphNamePtr[gid])) {
return gid;
}
}
return 0;
}
char*
tt_get_glyphname (struct tt_post_table *post, USHORT gid)
{
if (gid < post->numberOfGlyphs && post->glyphNamePtr[gid])
return xstrdup(post->glyphNamePtr[gid]);
return NULL;
}
void
tt_release_post_table (struct tt_post_table *post)
{
USHORT i;
assert(post);
if (post->glyphNamePtr && post->Version != 0x00010000UL)
free((void *)post->glyphNamePtr);
if (post->names) {
for (i = 0; i < post->count; i++) {
free(post->names[i]);
}
free(post->names);
}
post->count = 0;
post->glyphNamePtr = NULL;
post->names = NULL;
free(post);
return;
}
/* Macintosh glyph order - from apple's TTRefMan */
static const char *
macglyphorder[258] = {
/* 0x0000 */
".notdef", ".null", "nonmarkingreturn", "space", "exclam", "quotedbl",
"numbersign", "dollar", "percent", "ampersand", "quotesingle",
"parenleft", "parenright", "asterisk", "plus", "comma",
/* 0x0010 */
"hyphen", "period", "slash", "zero", "one", "two", "three", "four",
"five", "six", "seven", "eight", "nine", "colon", "semicolon", "less",
/* 0x0020 */
"equal", "greater", "question", "at", "A", "B", "C", "D",
"E", "F", "G", "H", "I", "J", "K", "L",
/* 0x0030 */
"M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X",
"Y", "Z", "bracketleft", "backslash",
/* 0x0040 */
"bracketright", "asciicircum", "underscore", "grave",
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l",
/* 0x0050 */
"m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x",
"y", "z", "braceleft", "bar",
/* 0x0060 */
"braceright", "asciitilde", "Adieresis", "Aring", "Ccedilla",
"Eacute", "Ntilde", "Odieresis", "Udieresis", "aacute", "agrave",
"acircumflex", "adieresis", "atilde", "aring", "ccedilla",
/* 0x0070 */
"eacute", "egrave", "ecircumflex", "edieresis", "iacute", "igrave",
"icircumflex", "idieresis", "ntilde", "oacute", "ograve", "ocircumflex",
"odieresis", "otilde", "uacute", "ugrave",
/* 0x0080 */
"ucircumflex", "udieresis", "dagger", "degree", "cent", "sterling",
"section", "bullet", "paragraph", "germandbls", "registered",
"copyright", "trademark", "acute", "dieresis", "notequal",
/* 0x0090 */
"AE", "Oslash", "infinity", "plusminus", "lessequal", "greaterequal",
"yen", "mu", "partialdiff", "summation", "product", "pi", "integral",
"ordfeminine", "ordmasculine", "Omega",
/* 0x00a0 */
"ae", "oslash", "questiondown", "exclamdown", "logicalnot", "radical",
"florin", "approxequal", "Delta", "guillemotleft", "guillemotright",
"ellipsis", "nonbreakingspace", "Agrave", "Atilde", "Otilde",
/* 0x00b0 */
"OE", "oe", "endash", "emdash", "quotedblleft", "quotedblright",
"quoteleft", "quoteright", "divide", "lozenge", "ydieresis",
"Ydieresis", "fraction", "currency", "guilsinglleft", "guilsinglright",
/* 0x00c0 */
"fi", "fl", "daggerdbl", "periodcentered", "quotesinglbase",
"quotedblbase", "perthousand", "Acircumflex", "Ecircumflex", "Aacute",
"Edieresis", "Egrave", "Iacute", "Icircumflex", "Idieresis", "Igrave",
/* 0x00d0 */
"Oacute", "Ocircumflex", "apple", "Ograve", "Uacute", "Ucircumflex",
"Ugrave", "dotlessi", "circumflex", "tilde", "macron", "breve",
"dotaccent", "ring", "cedilla", "hungarumlaut",
/* 0x00e0 */
"ogonek", "caron", "Lslash", "lslash", "Scaron", "scaron", "Zcaron",
"zcaron", "brokenbar", "Eth", "eth", "Yacute", "yacute", "Thorn",
"thorn", "minus",
/* 0x00f0 */
"multiply", "onesuperior", "twosuperior", "threesuperior", "onehalf",
"onequarter", "threequarters", "franc", "Gbreve", "gbreve", "Idotaccent",
"Scedilla", "scedilla", "Cacute", "cacute", "Ccaron",
/* 0x0100 */
"ccaron", "dcroat"
};
```
|
An ofrenda is the offering placed in a home altar during the annual and traditionally Mexican celebration.
Ofrenda may also refer to:
Ofrenda (Danny Rivera album), 1986
Ofrenda (Lila Downs album), 1994
|
Frank Lockwood (1865-1935) was one of Montgomery, Alabama's leading architects.
Biography
Lockwood was born in 1865 in New Jersey to English parents. His father was an engineer. Growing up in New York City Frank was a talented singer and was, at one point, offered a contract with the Metropolitan Opera. However, his mother persuaded him to study architecture. After graduating from Princeton University and Pratt Institute he lived in Columbus, Georgia, before moving to Montgomery in 1894.
Lockwood embarked on a 41-year career in Montgomery. He designed scores of residential homes and many important public buildings. He died in 1935 at his home on Adams Avenue.
One of Lockwood's buildings was The Standard Club in Montgomery, designed in 1929. A modern gated community was later built on the site and called Lockwood.
Works
A number of his works are listed on the U.S. National Register of Historic Places.
Works include (with attribution):
Alabama State Capitol (north and south wings), Montgomery, Alabama, National Historic Landmark
Avant House, 909 Sanford Rd. Andalusia, Alabama, NRHP-listed
Bell House, 550 Upper Kingston Rd. Prattville, Alabama, NRHP-listed
Brewaker Estate, 435 E Fairview Ave.Montgomery, Alabama
Gilmer Estate, 1655 Gilmer Ave. Montgomery, Alabama
Leonel Weil Estate, 251 E. Fairview Ave. Montgomery, Alabama, Built for Leonel Weil and Cecile Rea (Rich) Weil in 1925.
Covington County Courthouse and Jail, 101 N. Court Sq. Andalusia, Alabama, NRHP-listed
Demopolis Public School (built 1914), 601 S. Main Ave. Demopolis, Alabama, NRHP-listed
First Baptist Church of Wetumpka, 205 West Bridge St. Wetumpka, Alabama, NRHP-listed
First National Bank Building, 101 S. Cotton St. Andalusia, Alabama, NRHP-listed
Buildings on the campus of Huntingdon College: Bellingrath Hall, Houghton Memorial Library, and Miriam Jackson Home
Old Calhoun County Courthouse, 314 E. Central Ave. Blountstown, Florida, NRHP-listed
Marcus Meyer Skinner House, 2612 Summerfield Rd. Selma, Alabama, NRHP-listed
Dr. C. A. Thigpen House, 1412 S. Perry St. Montgomery, Alabama, NRHP-listed
Troy High School (1917), 436 Elm St. Troy, Alabama, NRHP-listed, demolished in 2010.
Montgomery City Hall (1936–37), Montgomery, Alabama. Completed after Lockwood's death to replace the original city hall that burned in 1932. Construction was delayed by a lack of funds during the Great Depression.
References
Architects from Alabama
1865 births
1935 deaths
People from Montgomery, Alabama
|
```c++
#include <fc/thread/spin_yield_lock.hpp>
#include <fc/time.hpp>
#include <boost/atomic.hpp>
#include <boost/memory_order.hpp>
#include <new>
namespace fc {
void yield();
#define define_self boost::atomic<int>* self = (boost::atomic<int>*)&_lock
spin_yield_lock::spin_yield_lock()
{
define_self;
new (self) boost::atomic<int>();
static_assert( sizeof(boost::atomic<int>) == sizeof(_lock), "" );
self->store(unlocked);
}
bool spin_yield_lock::try_lock() {
define_self;
return self->exchange(locked, boost::memory_order_acquire)!=locked;
}
bool spin_yield_lock::try_lock_for( const fc::microseconds& us ) {
return try_lock_until( fc::time_point::now() + us );
}
bool spin_yield_lock::try_lock_until( const fc::time_point& abs_time ) {
while( abs_time > time_point::now() ) {
if( try_lock() )
return true;
yield();
}
return false;
}
void spin_yield_lock::lock() {
define_self;
while( self->exchange(locked, boost::memory_order_acquire)==locked) {
yield();
}
}
void spin_yield_lock::unlock() {
define_self;
self->store(unlocked, boost::memory_order_release);
}
#undef define_self
} // namespace fc
```
|
The Noleby Runestone, which is also known as the Fyrunga Runestone or Vg 63 for its Rundata catalog listing, is a runestone in Proto-Norse which is engraved with the Elder Futhark. It was discovered in 1894 at the farm of Stora Noleby in Västergötland, Sweden.
Description
The Noleby Runestone was dated by Sophus Bugge to about 600 AD, and cannot be dated any younger than about 450 AD due to its language and rune forms. It is notable because of its inscription runo [...] raginakundo which means "runes of divine origin" and which also appears in the later Sparlösa Runestone and the eddic poem Hávamál. This is of importance for the study of Norse mythology since it indicates that the expressions and the contents of the Poetic Edda are indeed of pre-historic Scandinavian origin.
The runic inscription consists of three lines of text between bands, with the second line considered untranslatable and often listed as being a "meaningless formula." The Noleby is the only runestone in Scandinavia that uses the star rune form for [j] rather than for /a/ or /h/. The name Hakoþuz in the last line of the inscription is believed to mean "crooked one," although other interpretations have been suggested.
The Noleby Runestone is now located in the Swedish Museum of National Antiquities in Stockholm.
Inscription
Below follows a presentation of the runestones based on the Rundata project. The transcriptions into Old Norse are in the Swedish and Danish dialect to facilitate comparison with the inscriptions, while the English translation provided by Rundata gives the names in the de facto standard dialect (the Icelandic and Norwegian dialect):
Transcription of the runes into Latin letters
runo fahi raginakudo toj-a ¶ unaþou ÷ suhurah : susi(h)—tin ¶ hakuþo
Transliteration into Proto Norse
Runo fahi raginakundo toj[e'k]a. ... Hakoþuz.
Translation into English
"I prepare the suitable divine rune ... for Hakoþuz."
See also
Jēran
References
Other sources
The article Fyrungastenen in Nordisk familjebok (1908).
External links
Photograph of Noleby Runestone
Runestones in Västergötland
|
```c++
// henry UNDERSCORE christophe AT hotmail DOT com
// This is an extended version of the state machine available in the boost::mpl library
// Distributed under the same license as the original.
// file LICENSE_1_0.txt or copy at
// path_to_url
#include <iostream>
// back-end
#include <boost/msm/back/state_machine.hpp>
//front-end
#include <boost/msm/front/state_machine_def.hpp>
namespace msm = boost::msm;
namespace mpl = boost::mpl;
namespace
{
// events
struct play {};
struct end_pause {};
struct stop {};
struct pause {};
struct open_close {};
struct NextSong {};
struct PreviousSong {};
struct error_found {};
struct end_error {};
struct end_error2 {};
// Flags. Allow information about a property of the current state
struct PlayingPaused{};
struct CDLoaded {};
struct FirstSongPlaying {};
// A "complicated" event type that carries some data.
struct cd_detected
{
cd_detected(std::string name)
: name(name)
{}
std::string name;
};
// front-end: define the FSM structure
struct player_ : public msm::front::state_machine_def<player_>
{
template <class Event,class FSM>
void on_entry(Event const& ,FSM&)
{
std::cout << "entering: Player" << std::endl;
}
template <class Event,class FSM>
void on_exit(Event const&,FSM& )
{
std::cout << "leaving: Player" << std::endl;
}
// The list of FSM states
struct Empty : public msm::front::state<>
{
// if the play event arrives in this state, defer it until a state handles it or
// rejects it
typedef mpl::vector<play> deferred_events;
// every (optional) entry/exit methods get the event passed.
template <class Event,class FSM>
void on_entry(Event const&,FSM& ) {std::cout << "entering: Empty" << std::endl;}
template <class Event,class FSM>
void on_exit(Event const&,FSM& ) {std::cout << "leaving: Empty" << std::endl;}
};
struct Open : public msm::front::state<>
{
// if the play event arrives in this state, defer it until a state handles it or
// rejects it
typedef mpl::vector<play> deferred_events;
typedef mpl::vector1<CDLoaded> flag_list;
template <class Event,class FSM>
void on_entry(Event const&,FSM& ) {std::cout << "entering: Open" << std::endl;}
template <class Event,class FSM>
void on_exit(Event const&,FSM& ) {std::cout << "leaving: Open" << std::endl;}
};
struct Stopped : public msm::front::state<>
{
// when stopped, the CD is loaded
typedef mpl::vector1<CDLoaded> flag_list;
template <class Event,class FSM>
void on_entry(Event const&,FSM& ) {std::cout << "entering: Stopped" << std::endl;}
template <class Event,class FSM>
void on_exit(Event const&,FSM& ) {std::cout << "leaving: Stopped" << std::endl;}
};
// the player state machine contains a state which is himself a state machine
// as you see, no need to declare it anywhere so Playing can be developed separately
// by another team in another module. For simplicity I just declare it inside player
struct Playing_ : public msm::front::state_machine_def<Playing_>
{
// when playing, the CD is loaded and we are in either pause or playing (duh)
typedef mpl::vector2<PlayingPaused,CDLoaded> flag_list;
template <class Event,class FSM>
void on_entry(Event const&,FSM& ) {std::cout << "entering: Playing" << std::endl;}
template <class Event,class FSM>
void on_exit(Event const&,FSM& ) {std::cout << "leaving: Playing" << std::endl;}
// The list of FSM states
struct Song1 : public msm::front::state<>
{
typedef mpl::vector1<FirstSongPlaying> flag_list;
template <class Event,class FSM>
void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;}
template <class Event,class FSM>
void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;}
};
struct Song2 : public msm::front::state<>
{
template <class Event,class FSM>
void on_entry(Event const&,FSM& ) {std::cout << "starting: Second song" << std::endl;}
template <class Event,class FSM>
void on_exit(Event const&,FSM& ) {std::cout << "finishing: Second Song" << std::endl;}
};
struct Song3 : public msm::front::state<>
{
template <class Event,class FSM>
void on_entry(Event const&,FSM& ) {std::cout << "starting: Third song" << std::endl;}
template <class Event,class FSM>
void on_exit(Event const&,FSM& ) {std::cout << "finishing: Third Song" << std::endl;}
};
// the initial state. Must be defined
typedef Song1 initial_state;
// transition actions
void start_next_song(NextSong const&) { std::cout << "Playing::start_next_song\n"; }
void start_prev_song(PreviousSong const&) { std::cout << "Playing::start_prev_song\n"; }
// guard conditions
typedef Playing_ pl; // makes transition table cleaner
// Transition table for Playing
struct transition_table : mpl::vector4<
// Start Event Next Action Guard
// +---------+-------------+---------+---------------------+----------------------+
a_row < Song1 , NextSong , Song2 , &pl::start_next_song >,
a_row < Song2 , PreviousSong, Song1 , &pl::start_prev_song >,
a_row < Song2 , NextSong , Song3 , &pl::start_next_song >,
a_row < Song3 , PreviousSong, Song2 , &pl::start_prev_song >
// +---------+-------------+---------+---------------------+----------------------+
> {};
// Replaces the default no-transition response.
template <class FSM,class Event>
void no_transition(Event const& e, FSM&,int state)
{
std::cout << "no transition from state " << state
<< " on event " << typeid(e).name() << std::endl;
}
};
// back-end
typedef msm::back::state_machine<Playing_> Playing;
// state not defining any entry or exit
struct Paused : public msm::front::state<>
{
typedef mpl::vector2<PlayingPaused,CDLoaded> flag_list;
};
struct AllOk : public msm::front::state<>
{
template <class Event,class FSM>
void on_entry(Event const&,FSM& ) {std::cout << "starting: AllOk" << std::endl;}
template <class Event,class FSM>
void on_exit(Event const&,FSM& ) {std::cout << "finishing: AllOk" << std::endl;}
};
// this state is also made terminal so that all the events are blocked
struct ErrorMode : //public msm::front::terminate_state<> // ErrorMode terminates the state machine
public msm::front::interrupt_state<end_error/*mpl::vector<end_error,end_error2>*/ > // ErroMode just interrupts. Will resume if
// the event end_error is generated
{
template <class Event,class FSM>
void on_entry(Event const&,FSM& ) {std::cout << "starting: ErrorMode" << std::endl;}
template <class Event,class FSM>
void on_exit(Event const&,FSM& ) {std::cout << "finishing: ErrorMode" << std::endl;}
};
// the initial state of the player SM. Must be defined
typedef mpl::vector<Empty,AllOk> initial_state;
// transition actions
void start_playback(play const&) { std::cout << "player::start_playback\n"; }
void open_drawer(open_close const&) { std::cout << "player::open_drawer\n"; }
void close_drawer(open_close const&) { std::cout << "player::close_drawer\n"; }
void store_cd_info(cd_detected const& cd) {std::cout << "player::store_cd_info\n";}
void stop_playback(stop const&) { std::cout << "player::stop_playback\n"; }
void pause_playback(pause const&) { std::cout << "player::pause_playback\n"; }
void resume_playback(end_pause const&) { std::cout << "player::resume_playback\n"; }
void stop_and_open(open_close const&) { std::cout << "player::stop_and_open\n"; }
void stopped_again(stop const&){std::cout << "player::stopped_again\n";}
void report_error(error_found const&) {std::cout << "player::report_error\n";}
void report_end_error(end_error const&) {std::cout << "player::report_end_error\n";}
// guard conditions
typedef player_ p; // makes transition table cleaner
// Transition table for player
struct transition_table : mpl::vector<
// Start Event Next Action Guard
// +---------+-------------+---------+---------------------+----------------------+
a_row < Stopped , play , Playing , &p::start_playback >,
a_row < Stopped , open_close , Open , &p::open_drawer >,
a_row < Stopped , stop , Stopped , &p::stopped_again >,
// +---------+-------------+---------+---------------------+----------------------+
a_row < Open , open_close , Empty , &p::close_drawer >,
// +---------+-------------+---------+---------------------+----------------------+
a_row < Empty , open_close , Open , &p::open_drawer >,
a_row < Empty , cd_detected , Stopped , &p::store_cd_info >,
// +---------+-------------+---------+---------------------+----------------------+
a_row < Playing , stop , Stopped , &p::stop_playback >,
a_row < Playing , pause , Paused , &p::pause_playback >,
a_row < Playing , open_close , Open , &p::stop_and_open >,
// +---------+-------------+---------+---------------------+----------------------+
a_row < Paused , end_pause , Playing , &p::resume_playback >,
a_row < Paused , stop , Stopped , &p::stop_playback >,
a_row < Paused , open_close , Open , &p::stop_and_open >,
// +---------+-------------+---------+---------------------+----------------------+
a_row < AllOk , error_found ,ErrorMode, &p::report_error >,
a_row <ErrorMode,end_error ,AllOk , &p::report_end_error >
// +---------+-------------+---------+---------------------+----------------------+
> {};
// Replaces the default no-transition response.
template <class FSM,class Event>
void no_transition(Event const& e, FSM&,int state)
{
std::cout << "no transition from state " << state
<< " on event " << typeid(e).name() << std::endl;
}
};
// Pick a back-end
typedef msm::back::state_machine<player_> player;
//
// Testing utilities.
//
static char const* const state_names[] = { "Stopped", "Open", "Empty", "Playing", "Paused","AllOk","ErrorMode" };
void pstate(player const& p)
{
// we have now several active states, which we show
for (unsigned int i=0;i<player::nr_regions::value;++i)
{
std::cout << " -> " << state_names[p.current_state()[i]] << std::endl;
}
}
void test()
{
player p;
// needed to start the highest-level SM. This will call on_entry and mark the start of the SM
p.start();
// test deferred event
// deferred in Empty and Open, will be handled only after event cd_detected
p.process_event(play());
// tests some flags
std::cout << "CDLoaded active:" << std::boolalpha << p.is_flag_active<CDLoaded>() << std::endl; //=> false (no CD yet)
// go to Open, call on_exit on Empty, then action, then on_entry on Open
p.process_event(open_close()); pstate(p);
p.process_event(open_close()); pstate(p);
p.process_event(cd_detected("louie, louie"));
// at this point, Play is active (was deferred)
std::cout << "PlayingPaused active:" << std::boolalpha << p.is_flag_active<PlayingPaused>() << std::endl;//=> true
std::cout << "FirstSong active:" << std::boolalpha << p.is_flag_active<FirstSongPlaying>() << std::endl;//=> true
// make transition happen inside it. Player has no idea about this event but it's ok.
p.process_event(NextSong());pstate(p); //2nd song active
p.process_event(NextSong());pstate(p);//3rd song active
p.process_event(PreviousSong());pstate(p);//2nd song active
std::cout << "FirstSong active:" << std::boolalpha << p.is_flag_active<FirstSongPlaying>() << std::endl;//=> false
std::cout << "PlayingPaused active:" << std::boolalpha << p.is_flag_active<PlayingPaused>() << std::endl;//=> true
p.process_event(pause()); pstate(p);
std::cout << "PlayingPaused active:" << std::boolalpha << p.is_flag_active<PlayingPaused>() << std::endl;//=> true
// go back to Playing
// as you see, it starts back from the original state
p.process_event(end_pause()); pstate(p);
p.process_event(pause()); pstate(p);
p.process_event(stop()); pstate(p);
std::cout << "PlayingPaused active:" << std::boolalpha << p.is_flag_active<PlayingPaused>() << std::endl;//=> false
std::cout << "CDLoaded active:" << std::boolalpha << p.is_flag_active<CDLoaded>() << std::endl;//=> true
// by default, the flags are OR'ed but you can also use AND. Then the flag must be present in
// all of the active states
std::cout << "CDLoaded active with AND:" << std::boolalpha << p.is_flag_active<CDLoaded,player::Flag_AND>() << std::endl;//=> false
// event leading to the same state
p.process_event(stop()); pstate(p);
// event leading to a terminal/interrupt state
p.process_event(error_found()); pstate(p);
// try generating more events
std::cout << "Trying to generate another event" << std::endl; // will not work, fsm is terminated or interrupted
p.process_event(play());pstate(p);
std::cout << "Trying to end the error" << std::endl; // will work only if ErrorMode is interrupt state
p.process_event(end_error());pstate(p);
std::cout << "Trying to generate another event" << std::endl; // will work only if ErrorMode is interrupt state
p.process_event(play());pstate(p);
std::cout << "stop fsm" << std::endl;
p.stop();
}
}
int main()
{
test();
return 0;
}
```
|
Khersones can refer to:
Chersonesos, archeological site in Crimea
Khersones (ship), tall ship from Ukraine
, a Russian coastal tanker
|
David Reinbacher (born 25 October 2004) is an Austrian professional ice hockey defenceman for EHC Kloten of the National League (NL) as a prospect to the Montreal Canadiens of the National Hockey League (NHL). He was drafted fifth overall by the Canadiens in the 2023 NHL Entry Draft.
Playing career
Reinbacher played as a youth in Switzerland with EHC Rheintal and EHC Bülach, before moving to EHC Kloten at the under-15 level. Appearing within Kloten junior ranks, Reinbacher made his professional debut with the club in the Swiss League, the second tier of the Swiss league system, midway through the 2021–22 season. Reinbacher managed 1 goal and 10 assists in 27 regular season appearances. He then played in 14 playoff games, which culminated in Kloten securing promotion to the National League, Switzerland's first tier.
In the 2022–23 season, Reinbacher established himself a regular on Kloten's blueline, attracting attention for doing so as an 18-year-old player, and seeing his average ice time rise from 6 minutes per game to over 20. He recorded 3 goals and 19 assists in 46 games during the regular season, and two further points in three playoff games. He received the league's award for the best young player of the year.
Prior to the 2022–23 season, Reinbacher had a low profile among evaluators for the 2023 NHL Entry Draft, with some European evaluators identifying him as a potential second-round selection. By November 2022 he was receiving attention from major North American publications, with The Hockey News naming him to their "All-Sleeper Squad" of players who should be considered for the first round. By the time of the draft in June, Reinbacher was mooted as a top ten selection by many, and generally considered likely to be the first defenceman taken in the draft. At the draft in Nashville, Reinbacher was selected fifth overall by the Montreal Canadiens, with the team's general manager Kent Hughes describing him as "a diamond in the rough with a lot of potential." This made him the highest-drafted Austrian skater in the history of the NHL, alongside Thomas Vanek, taken at the same ordinal twenty years earlier. The Canadiens' decision was controversial due to their passing over Matvei Michkov, considered by many to be the most talented player still available at the time, who was subsequently taken by the Philadelphia Flyers. Criticism on social media attracted sports media coverage, notably due to reported abusive messages directed at Reinbacher himself.
On July 5, 2023, the Canadiens announced that Reinbacher had signed a three-year entry-level contract with the organization. After what was generally considered a positive appearance at the Canadiens' training camp in the autumn of 2023, Reinbacher was sent back to the National League for the 2023–24 season.
International play
Reinbacher represented Team Austria at the 2023 IIHF World Junior Championship. He averaged over 26 minutes of ice time per game, and had two assists in the team's final game, which saw them relegated following defeat at the hands of Team Latvia. Months later he made his debut with the senior national team at the 2023 IIHF World Championship. After suffering an MCL injury in Austria's second game against Team Sweden, Reinbacher missed three games, but returned to play 23 minutes in the final group stage game against Team Hungary and help Austria avoid relegation.
Career statistics
Regular season and playoffs
International
Awards and achievements
References
External links
2004 births
Living people
EHC Kloten players
Austrian expatriate ice hockey people
Austrian expatriate sportspeople in Switzerland
Austrian ice hockey defencemen
Expatriate ice hockey players in Switzerland
Montreal Canadiens draft picks
National Hockey League first-round draft picks
People from Hohenems
Sportspeople from Vorarlberg
|
The Afterlight is a 2009 American drama film written and directed by Alexei Kaleina and Craig William Macneill and starring Michael Kelly, Jicky Schnee, Ana Asensio, Rip Torn, Morgan Taddeo and Rhoda Pauley.
Cast
Michael Kelly as Andrew
Jicky Schnee as Claire
Ana Asensio as Maria
Morgan Taddeo as Lucy
Rip Torn as Carl
Rhoda Pauley as Carol
Release
The film premiered at the Rome Film Festival in 2009 and was released at the Quad Cinema on September 10, 2010.
Reception
The film has a 63% percent rating on Rotten Tomatoes based on eight reviews.
Ronnie Scheib of Variety gave the film a positive review and wrote, "Afterlight proceeds without much discernible plot or character development, its objects and places exuding more backstory than its people, though Rip Torn as the father of the sole male protagonist lends a certain woodsy authenticity."
Jeannette Catsoulis of The New York Times also gave the film a positive review and wrote, “ Tempering the film’s oppressive emotions, the cinematographer Zoë White’s exquisite compositions charge leaden rain clouds and rustling branches with eerie life, and dusty indoor corners with shadowy secrets.”
Gary Goldstein of the Los Angeles Times gave the film a negative review and wrote, “ At the same time, it’s hard to embrace this glacially paced, symbolism-heavy film’s elusive — when it’s not being elliptical — story about a city couple’s escape to rural life.”
References
External links
2009 films
2009 drama films
American drama films
2000s English-language films
2000s American films
English-language drama films
|
```javascript
"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
Object.defineProperty(exports, "__esModule", { value: true });
__export(require("rxjs-compat/operators/bufferWhen"));
//# sourceMappingURL=bufferWhen.js.map
```
|
Okechukwu Amah is a Nigerian Petroleum Engineer and Business administration academic. He is a faculty member and teaches Human Resources, Leadership, and Human Behavior in Organizations at Lagos Business School. He also serves as the Research Director at Lagos Business School, Pan Atlantic University, Nigeria. Okechukwu has over 31 years of experience working at Chevron Nigeria Limited, where he held a range of managerial positions.
Education
Okechukwu obtained his first degree in Petroleum Engineering from the University of Ibadan. He also obtained a Master's in Business Administration and a Ph.D. in Business Administration(Organisational behaviour) from the University of Benin.
Life
Okechukwu began his career as a petroleum engineer with Texaco Overseas Nigeria Limited. During his tenure there, he held key positions such as District Petroleum Engineer and Assistant District Manager. He was appointed Production Manager before the company merged with Chevron Nigeria Limited. Then, he joined Chevron Nigeria Limited, holding other pivotal positions before leaving the company.
Okechukwu joined the faculty at Lagos Business School after 31 years as a senior executive with Chevron Nigeria Ltd. His research areas include leadership, work-life balance, and work attitudes. Among his professional associations, he is a member of the Society of Petroleum Engineers, the Nigerian Academy of Management, the American Academy of Management, the Society of Human Resources Management, and the Southern Management Society. Okechukwu is an author, he has published many academic papers and case studies in scholarly journals around the world. Currently, he serves on the board of the Institute for Work and Family Integration along with Lagos Business School dean Chris Ogbechie.
Selected works
Amah, Okechkwu (2023). Resolving the African Leadership Challenge: Insight From History. Emerald Publishing Limited
Amah, E. Okechukwu & Ogah, Marvel (2021). Work-life Integration in Africa: A Multidimensional Approach to Achieving Balance. Palgrave Macmillan.ISBN 978-3030691127
Amah, Okechukwu(2018).Globalization and Leadership in Africa: Developments and Challenges for the Future.Palgrave Pivot. ISBN 978-3319987637
Amah, O. E. (2009). Job satisfaction and turnover intention relationship: the moderating effect of job role centrality and life satisfaction. Research and Practice in Human Resource Management, 17(1), 24–35.
Amah, O. E. (2018). Determining the antecedents and outcomes of servant leadership. Journal of General Management, 43(3), 126–138.
Amah, O. E., & Oyetunde, K. (2019). Human resources management practice, job satisfaction, and affective organizational commitment relationships: The effects of ethnic similarity and difference. SA Journal of Industrial Psychology, 45(1), 1–11.
Amah, O. E. (2010). Family-work conflict and the availability of work-family friendly policy relationship in married employees: the moderating role of work centrality and career consequence. Research & Practice in Human Resource Management, 18(2).
Amah, O. E. (2018). Employee engagement in Nigeria: The role of leaders and boundary variables. SA Journal of Industrial Psychology, 44(1), 1–8.
References
External links
Publications indexed by Google Scholar
Living people
University of Ibadan alumni
University of Benin (Nigeria) alumni
Academic staff of Pan-Atlantic University
Chevron Corporation people
Year of birth missing (living people)
|
Moberly Lake is along British Columbia Highway 29 in northern British Columbia, Canada, and named for Henry John Moberly, a fur trader who lived on the lake. It is served by the Chetwynd Royal Canadian Mounted Police (RCMP) detachment.
The Moberly Lake has always been a revered site for the Danezaa people, who called it "the lake you can depend on," an allusion to the bounty of the lake, where they could always find food.
In 1915, the outsider settlement comprised 16 people (Fort George Herald, 9 Oct 1915).
Legends
Other Danezaa regarded the lake as a place of mystique. For them, it was 'the Lake with a hole through it' or 'the lake with no bottom'. According to their lore, the lake was the dwelling place of an ancient creature that came to the surface after long intervals below the water.
See also
List of rivers of British Columbia
References
External links
Moberly Lake as featured on DiscoverThePeaceCountry.com
Moberly
Peace River Land District
|
```java
/*
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
package org.apache.rocketmq.common.protocol.header.namesrv;
import org.apache.rocketmq.remoting.CommandCustomHeader;
import org.apache.rocketmq.remoting.annotation.CFNullable;
import org.apache.rocketmq.remoting.exception.RemotingCommandException;
public class RegisterBrokerResponseHeader implements CommandCustomHeader {
@CFNullable
private String haServerAddr;
@CFNullable
private String masterAddr;
@Override
public void checkFields() throws RemotingCommandException {
}
public String getHaServerAddr() {
return haServerAddr;
}
public void setHaServerAddr(String haServerAddr) {
this.haServerAddr = haServerAddr;
}
public String getMasterAddr() {
return masterAddr;
}
public void setMasterAddr(String masterAddr) {
this.masterAddr = masterAddr;
}
}
```
|
```html
<!DOCTYPE html>
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>V8 Heap Statistics</title>
<link href='path_to_url rel='stylesheet'>
<script
src="path_to_url"></script>
<script
src="path_to_url"
integrity="sha256-N1z6ddQzX83fjw8v7uSNe7/MgOmMKdwFUv1+AJMDqNM="
crossorigin="anonymous"></script>
<script src="path_to_url"
crossorigin="anonymous"></script>
<script src="helper.js"></script>
<script type="module" src="details-selection.js"></script>
<script type="module" src="global-timeline.js"></script>
<script type="module" src="histogram-viewer.js"></script>
<script type="module" src="trace-file-reader.js"></script>
<style>
body {
font-family: 'Roboto', sans-serif;
margin-left: 5%;
margin-right: 5%;
}
</style>
<script>
'use strict';
google.charts.load('current', {'packages':['line', 'corechart', 'bar']});
function $(id) { return document.querySelector(id); }
function removeAllChildren(node) {
while (node.firstChild) {
node.removeChild(node.firstChild);
}
}
let state = Object.create(null);
function globalDataChanged(e) {
state.data = e.detail;
// Emit one entry with the whole model for debugging purposes.
console.log(state.data);
state.selection = null;
$('#global-timeline').selection = state.selection;
$('#global-timeline').data = state.data;
$('#histogram-viewer').selection = state.selection;
$('#histogram-viewer').data = state.data;
$('#details-selection').data = state.data;
}
function globalSelectionChangedA(e) {
state.selection = e.detail;
console.log(state.selection);
$('#global-timeline').selection = state.selection;
$('#histogram-viewer').selection = state.selection;
}
</script>
</head>
<body>
<h1>V8 Heap Statistics</h1>
<trace-file-reader onchange="globalDataChanged(event)"></trace-file-reader>
<details-selection id="details-selection" onchange="globalSelectionChangedA(event)"></details-selection>
<global-timeline id="global-timeline"></global-timeline>
<histogram-viewer id="histogram-viewer"></histogram-viewer>
<p>Visualize object statistics that have been gathered using</p>
<ul>
<li><code>--trace-gc-object-stats</code> on V8</li>
<li>
<a
href="path_to_url">Chrome's
tracing infrastructure</a> collecting data for the category
<code>v8.gc_stats</code>.
</li>
</ul>
<p>
Note that you only get a data point on major GCs. You can enforce this by
using the <code>--gc-global</code> flag.
</p>
<p>
Note that the visualizer needs to run on a web server due to HTML imports
requiring <a
href="path_to_url">CORS</a>.
</p>
</body>
</html>
```
|
```objective-c
// All Rights Reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Author: wan@google.com (Zhanyong Wan)
#ifndef GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_
#define GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_
// This header implements typed tests and type-parameterized tests.
// Typed (aka type-driven) tests repeat the same test for types in a
// list. You must know which types you want to test with when writing
// typed tests. Here's how you do it:
#if 0
// First, define a fixture class template. It should be parameterized
// by a type. Remember to derive it from testing::Test.
template <typename T>
class FooTest : public testing::Test {
public:
...
typedef std::list<T> List;
static T shared_;
T value_;
};
// Next, associate a list of types with the test case, which will be
// repeated for each type in the list. The typedef is necessary for
// the macro to parse correctly.
typedef testing::Types<char, int, unsigned int> MyTypes;
TYPED_TEST_CASE(FooTest, MyTypes);
// If the type list contains only one type, you can write that type
// directly without Types<...>:
// TYPED_TEST_CASE(FooTest, int);
// Then, use TYPED_TEST() instead of TEST_F() to define as many typed
// tests for this test case as you want.
TYPED_TEST(FooTest, DoesBlah) {
// Inside a test, refer to TypeParam to get the type parameter.
// Since we are inside a derived class template, C++ requires use to
// visit the members of FooTest via 'this'.
TypeParam n = this->value_;
// To visit static members of the fixture, add the TestFixture::
// prefix.
n += TestFixture::shared_;
// To refer to typedefs in the fixture, add the "typename
// TestFixture::" prefix.
typename TestFixture::List values;
values.push_back(n);
...
}
TYPED_TEST(FooTest, HasPropertyA) { ... }
#endif // 0
// Type-parameterized tests are abstract test patterns parameterized
// by a type. Compared with typed tests, type-parameterized tests
// allow you to define the test pattern without knowing what the type
// parameters are. The defined pattern can be instantiated with
// different types any number of times, in any number of translation
// units.
//
// If you are designing an interface or concept, you can define a
// suite of type-parameterized tests to verify properties that any
// valid implementation of the interface/concept should have. Then,
// each implementation can easily instantiate the test suite to verify
// that it conforms to the requirements, without having to write
// similar tests repeatedly. Here's an example:
#if 0
// First, define a fixture class template. It should be parameterized
// by a type. Remember to derive it from testing::Test.
template <typename T>
class FooTest : public testing::Test {
...
};
// Next, declare that you will define a type-parameterized test case
// (the _P suffix is for "parameterized" or "pattern", whichever you
// prefer):
TYPED_TEST_CASE_P(FooTest);
// Then, use TYPED_TEST_P() to define as many type-parameterized tests
// for this type-parameterized test case as you want.
TYPED_TEST_P(FooTest, DoesBlah) {
// Inside a test, refer to TypeParam to get the type parameter.
TypeParam n = 0;
...
}
TYPED_TEST_P(FooTest, HasPropertyA) { ... }
// Now the tricky part: you need to register all test patterns before
// you can instantiate them. The first argument of the macro is the
// test case name; the rest are the names of the tests in this test
// case.
REGISTER_TYPED_TEST_CASE_P(FooTest,
DoesBlah, HasPropertyA);
// Finally, you are free to instantiate the pattern with the types you
// want. If you put the above code in a header file, you can #include
// it in multiple C++ source files and instantiate it multiple times.
//
// To distinguish different instances of the pattern, the first
// argument to the INSTANTIATE_* macro is a prefix that will be added
// to the actual test case name. Remember to pick unique prefixes for
// different instances.
typedef testing::Types<char, int, unsigned int> MyTypes;
INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes);
// If the type list contains only one type, you can write that type
// directly without Types<...>:
// INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, int);
#endif // 0
#include "gtest/internal/gtest-port.h"
#include "gtest/internal/gtest-type-util.h"
// Implements typed tests.
#if GTEST_HAS_TYPED_TEST
// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
//
// Expands to the name of the typedef for the type parameters of the
// given test case.
# define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_
// The 'Types' template argument below must have spaces around it
// since some compilers may choke on '>>' when passing a template
// instance (e.g. Types<int>)
# define TYPED_TEST_CASE(CaseName, Types) \
typedef ::testing::internal::TypeList< Types >::type \
GTEST_TYPE_PARAMS_(CaseName)
# define TYPED_TEST(CaseName, TestName) \
template <typename gtest_TypeParam_> \
class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \
: public CaseName<gtest_TypeParam_> { \
private: \
typedef CaseName<gtest_TypeParam_> TestFixture; \
typedef gtest_TypeParam_ TypeParam; \
virtual void TestBody(); \
}; \
bool gtest_##CaseName##_##TestName##_registered_ GTEST_ATTRIBUTE_UNUSED_ = \
::testing::internal::TypeParameterizedTest< \
CaseName, \
::testing::internal::TemplateSel< \
GTEST_TEST_CLASS_NAME_(CaseName, TestName)>, \
GTEST_TYPE_PARAMS_(CaseName)>::Register(\
"", #CaseName, #TestName, 0); \
template <typename gtest_TypeParam_> \
void GTEST_TEST_CLASS_NAME_(CaseName, TestName)<gtest_TypeParam_>::TestBody()
#endif // GTEST_HAS_TYPED_TEST
// Implements type-parameterized tests.
#if GTEST_HAS_TYPED_TEST_P
// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
//
// Expands to the namespace name that the type-parameterized tests for
// the given type-parameterized test case are defined in. The exact
// name of the namespace is subject to change without notice.
# define GTEST_CASE_NAMESPACE_(TestCaseName) \
gtest_case_##TestCaseName##_
// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
//
// Expands to the name of the variable used to remember the names of
// the defined tests in the given test case.
# define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \
gtest_typed_test_case_p_state_##TestCaseName##_
// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY.
//
// Expands to the name of the variable used to remember the names of
// the registered tests in the given test case.
# define GTEST_REGISTERED_TEST_NAMES_(TestCaseName) \
gtest_registered_test_names_##TestCaseName##_
// The variables defined in the type-parameterized test macros are
// static as typically these macros are used in a .h file that can be
// #included in multiple translation units linked together.
# define TYPED_TEST_CASE_P(CaseName) \
static ::testing::internal::TypedTestCasePState \
GTEST_TYPED_TEST_CASE_P_STATE_(CaseName)
# define TYPED_TEST_P(CaseName, TestName) \
namespace GTEST_CASE_NAMESPACE_(CaseName) { \
template <typename gtest_TypeParam_> \
class TestName : public CaseName<gtest_TypeParam_> { \
private: \
typedef CaseName<gtest_TypeParam_> TestFixture; \
typedef gtest_TypeParam_ TypeParam; \
virtual void TestBody(); \
}; \
static bool gtest_##TestName##_defined_ GTEST_ATTRIBUTE_UNUSED_ = \
GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).AddTestName(\
__FILE__, __LINE__, #CaseName, #TestName); \
} \
template <typename gtest_TypeParam_> \
void GTEST_CASE_NAMESPACE_(CaseName)::TestName<gtest_TypeParam_>::TestBody()
# define REGISTER_TYPED_TEST_CASE_P(CaseName, ...) \
namespace GTEST_CASE_NAMESPACE_(CaseName) { \
typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \
} \
static const char* const GTEST_REGISTERED_TEST_NAMES_(CaseName) = \
GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).VerifyRegisteredTestNames(\
__FILE__, __LINE__, #__VA_ARGS__)
// The 'Types' template argument below must have spaces around it
// since some compilers may choke on '>>' when passing a template
// instance (e.g. Types<int>)
# define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
::testing::internal::TypeParameterizedTestCase<CaseName, \
GTEST_CASE_NAMESPACE_(CaseName)::gtest_AllTests_, \
::testing::internal::TypeList< Types >::type>::Register(\
#Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
#endif // GTEST_HAS_TYPED_TEST_P
#endif // GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_
```
|
```php
<?php
/*
*
* File ini bagian dari:
*
* OpenSID
*
* Sistem informasi desa sumber terbuka untuk memajukan desa
*
* Aplikasi dan source code ini dirilis berdasarkan lisensi GPL V3
*
* Hak Cipta 2009 - 2015 Combine Resource Institution (path_to_url
* Hak Cipta 2016 - 2024 Perkumpulan Desa Digital Terbuka (path_to_url
*
* Dengan ini diberikan izin, secara gratis, kepada siapa pun yang mendapatkan salinan
* dari perangkat lunak ini dan file dokumentasi terkait ("Aplikasi Ini"), untuk diperlakukan
* tanpa batasan, termasuk hak untuk menggunakan, menyalin, mengubah dan/atau mendistribusikan,
* asal tunduk pada syarat berikut:
*
* Pemberitahuan hak cipta di atas dan pemberitahuan izin ini harus disertakan dalam
* setiap salinan atau bagian penting Aplikasi Ini. Barang siapa yang menghapus atau menghilangkan
* pemberitahuan ini melanggar ketentuan lisensi Aplikasi Ini.
*
* PERANGKAT LUNAK INI DISEDIAKAN "SEBAGAIMANA ADANYA", TANPA JAMINAN APA PUN, BAIK TERSURAT MAUPUN
* TERSIRAT. PENULIS ATAU PEMEGANG HAK CIPTA SAMA SEKALI TIDAK BERTANGGUNG JAWAB ATAS KLAIM, KERUSAKAN ATAU
* KEWAJIBAN APAPUN ATAS PENGGUNAAN ATAU LAINNYA TERKAIT APLIKASI INI.
*
* @package OpenSID
* @author Tim Pengembang OpenDesa
* @copyright Hak Cipta 2009 - 2015 Combine Resource Institution (path_to_url
* @copyright Hak Cipta 2016 - 2024 Perkumpulan Desa Digital Terbuka (path_to_url
* @license path_to_url GPL V3
* @link path_to_url
*
*/
namespace App\Models;
use App\Traits\ConfigId;
use Illuminate\Database\Eloquent\Relations\HasMany;
defined('BASEPATH') || exit('No direct script access allowed');
class Modul extends BaseModel
{
use ConfigId;
public const LOCK = 2;
public const UNLOCK = 1;
public const SELALU_AKTIF = ['beranda', 'notif', 'pengguna'];
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'setting_modul';
/**
* The timestamps for the model.
*
* @var bool
*/
public $timestamps = false;
/**
* The guarded with the model.
*
* @var array
*/
protected $guarded = [];
/**
* The casts with the model.
*
* @var array
*/
protected $casts = [
'aktif' => 'boolean',
];
protected $appends = [
'raw_aktif',
];
/**
* Scope query untuk aktif
*
* @param Builder $query
* @param mixed $value
*
* @return Builder
*/
public function scopeStatus($query, $value = 1)
{
return $query->where('aktif', $value);
}
public function scopeRoot($query)
{
return $query->where('parent', 0);
}
protected function getRawAktifAttribute($value)
{
return $this->attributes['aktif'];
}
/**
* Get all of the children for the Modul
*/
public function children(): HasMany
{
return $this->hasMany(Modul::class, 'parent', 'id');
}
public static function listIcon()
{
$list_icon = [];
$file = FCPATH . 'assets/fonts/fontawesome.txt';
if (file_exists($file)) {
$list_icon = file_get_contents($file);
$list_icon = explode('.', $list_icon);
return array_map(static fn ($a): string => explode(':', $a)[0], $list_icon);
}
return false;
}
public function isLock(): bool
{
return $this->attributes['aktif'] == self::LOCK;
}
}
```
|
The Cockburn Scale, also known as the Project Classification Scale, is a method of describing how much formal process a software project requires. The scale was described in Alistair Cockburn's book Agile Software Development. According to the author, the scale can be applied to other types of project, not only those that employ Agile methodologies.
Definition
The Cockburn Scale categorizes projects according to "criticality" and "size".
Process criticality is defined as the worst probable effect of an unremedied defect:
Loss of Life (L)
Loss of Essential Money (E)
Loss of Discretionary Money (D)
Loss of Comfort (C)
Process size is defined as the size of the project's development staff. It is an open-ended scale, but the most commonly used values are 6, 20, 40, 100, and 200.
A project is described by a pair of criticality and size indicators: for example, a two-person, life-critical project is categorized as a L6, while a 50-person project that, if it fails, could jeopardize the profits of an organization but not the organization's continued existence is categorized as a D100.
Application of the Scale
The criticality and size of a project can be juxtaposed on a grid:
Project classes further from the bottom left corner of the table require a more formal process than project classes closer to the bottom left corner.
References
External links
Methodology per project - Alistair Cockburn's article in which he defines the scale that is now known as the Cockburn Scale
Cockburn Scale discussion - An extract of the relevant discussion by Alistair Cockburn
A Practical Guide to Seven Agile Methodologies - uses the Cockburn Scale to compare different Agile methodologies and their applicability.
Software metrics
|
Stefan Chmielecki (died 1630) was a Polish noble of Chmieleccy noble family and voivode of Kiev (1629–1630). He was married to Teofila Chmielecka. He used Chmielecki's family crest: Bończa coat of arms
Bibliography
Władysław A. Serczyk, Na dalekiej Ukrainie. Dzieje Kozaczyzny do 1648 roku, Kraków - Wrocław 1984.
Secular senators of the Polish–Lithuanian Commonwealth
17th-century Polish nobility
Births circa 1580
1630 deaths
Year of birth uncertain
Voivodes of Kiev
|
James Alexander Lockhart (June 2, 1850 – December 24, 1905) was a United States representative from North Carolina. He was born in Anson County, North Carolina, on June 2, 1850, and attended the common schools. Lockhart graduated from Trinity College, in Durham, North Carolina, in June 1873; he studied law in Charlotte, North Carolina, and was admitted to the bar in 1874.
He settled in Wadesboro, North Carolina, where he practiced law. He was elected mayor of Wadesboro in 1875. He served in the North Carolina House of Representatives in 1879 and in the North Carolina Senate in 1881.
Lockhart, a Democrat, presented his credentials as a Member-elect to the Fifty-fourth Congress and served from March 4, 1895, to June 5, 1896, when he was unseated in favor of Charles H. Martin, who had contested the results of the 1894 election. Lockhart faced Martin again in the election of 1896, which Martin won by a large margin.
Lockhart resumed his law practice in Wadesboro. He died in Charlotte, on December 24, 1905. He was buried in Eastview Cemetery, in Wadesboro.
References
External links
Democratic Party North Carolina state senators
Democratic Party members of the North Carolina House of Representatives
1850 births
1905 deaths
People from Wadesboro, North Carolina
Mayors of places in North Carolina
Democratic Party members of the United States House of Representatives from North Carolina
19th-century American politicians
|
Budno () is a village in the administrative district of Gmina Goleniów, within Goleniów County, West Pomeranian Voivodeship, in north-western Poland. It lies approximately east of Goleniów and north-east of the regional capital Szczecin.
For the history of the region, see History of Pomerania.
The village has an approximate population of 190.
References
Budno
|
```javascript
/**
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
'use strict';
// MODULES //
var tape = require( 'tape' );
var validate = require( './../lib/validate.js' );
// TESTS //
tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( typeof validate, 'function', 'main export is a function' );
t.end();
});
tape( 'the function returns an error if not provided an options object', function test( t ) {
var values;
var err;
var i;
values = [
'5',
5,
NaN,
true,
null,
void 0,
[],
function noop() {}
];
for ( i = 0; i < values.length; i++ ) {
err = validate( {}, values[i] );
t.equal( err instanceof TypeError, true, 'returns expected value when provided '+values[i] );
}
t.end();
});
tape( 'the function returns an error if provided an `alpha` option which is not a number', function test( t ) {
var values;
var err;
var i;
values = [
'5',
false,
NaN,
null,
void 0,
[],
{},
function noop() {}
];
for ( i = 0; i < values.length; i++ ) {
err = validate( {}, {
'alpha': values[i]
});
t.equal( err instanceof TypeError, true, 'returns expected value when provided '+values[i] );
}
t.end();
});
tape( 'the function returns an error if provided an `alpha` option which is not on the interval `[0,1]`', function test( t ) {
var values;
var err;
var i;
values = [
-1.0,
1.5,
20.0
];
for ( i = 0; i < values.length; i++ ) {
err = validate( {}, {
'alpha': values[i]
});
t.equal( err instanceof RangeError, true, 'returns expected value when provided '+values[i] );
}
t.end();
});
tape( 'the function returns an error if provided an `alternative` option which is not a string', function test( t ) {
var values;
var err;
var i;
values = [
5,
NaN,
true,
null,
void 0,
[],
{},
function noop() {}
];
for ( i = 0; i < values.length; i++ ) {
err = validate( {}, {
'alternative': values[i]
});
t.equal( err instanceof TypeError, true, 'returns expected value when provided '+values[i] );
}
t.end();
});
tape( 'the function returns an error if provided an unrecognized/unsupported `alternative` option', function test( t ) {
var values;
var err;
var i;
values = [
'beep',
'boop',
'foo',
'bar'
];
for ( i = 0; i < values.length; i++ ) {
err = validate( {}, {
'alternative': values[i]
});
t.equal( err instanceof Error, true, 'returns expected value when provided '+values[i] );
}
t.end();
});
tape( 'the function returns an error if provided a `mu` option which is not a number', function test( t ) {
var values;
var err;
var i;
values = [
'5',
false,
NaN,
null,
void 0,
[],
{},
function noop() {}
];
for ( i = 0; i < values.length; i++ ) {
err = validate( {}, {
'mu': values[i]
});
t.equal( err instanceof TypeError, true, 'returns expected value when provided '+values[i] );
}
t.end();
});
tape( 'the function returns `null` if all options are valid', function test( t ) {
var expected;
var options;
var opts;
var err;
options = {
'alternative': 'greater',
'alpha': 0.05,
'mu': 1.0
};
opts = {};
expected = {
'alternative': options.alternative,
'mu': options.mu,
'alpha': options.alpha
};
err = validate( opts, options );
t.equal( err, null, 'returns null' );
t.deepEqual( opts, expected, 'sets option values' );
t.end();
});
tape( 'the function ignores unrecognized options', function test( t ) {
var options;
var opts;
var err;
options = {
'beep': 'boop',
'foo': 5,
'bar': {}
};
opts = {};
err = validate( opts, options );
t.equal( err, null, 'returns null' );
t.deepEqual( opts, {}, 'ignores unrecognized options' );
t.end();
});
```
|
Patrick Baldassarre (born 3 May 1986) is a Swiss professional basketball player for Kleb Basket Ferrara of the Italian Serie A2 Basket.
Professional career
In 2018, he joined Benacquista Assicurazioni Latina of the Italian Serie A2 Basket. In the summer of 2019, he signed with the team's competitor Kleb Basket Ferrara. In June 2020, he extended with Ferrara for another year.
Swiss national team
Baldassarre has been a member of the Swiss national basketball team.
References
External links
FIBA Profile
Profile at REALGM.com
Profile at Eurobasket.com
1986 births
Living people
People from Sion, Switzerland
Small forwards
Swiss expatriate basketball people in Italy
Swiss men's basketball players
Sportspeople from Valais
|
```python
#
# Written by Agostino Russo <agostino.russo@gmail.com>
#
# This file is part of Wubi the Win32 Ubuntu Installer.
#
# Wubi is free software; you can redistribute it and/or modify
# published by the Free Software Foundation; either version 2.1 of
#
# Wubi is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#
# along with this program. If not, see <path_to_url
#
from winui import ui
import os
import logging
import gettext
log = logging.getLogger("WinuiPage")
class Page(ui.Page):
'''
Base Page class
Adds some handy methods
'''
def on_init(self):
x, y, width, height = self.parent.get_client_rect()
self.application = self.frontend.application
self.info = self.application.info
self.resize(width, height)
self.width = width
self.height = height
language1 = self.info.locale and self.info.locale.split('.')[0]
language2 = language1 and language1.split('_')[0]
log.info("appname=%s, localedir=%s, languages=%s",self.info.application_name, self.info.translations_dir, [language1, language2])
translation = gettext.translation(self.info.application_name, localedir=self.info.translations_dir, languages=[language1, language2, "en_US", "en"])
translation.install(unicode=True, names=['ngettext'])
def insert_vertical_image(self, bmp_file):
self.vertical_image = ui.Bitmap(
self,
0, 0, 164, 314)
self.vertical_image.set_image(
os.path.join(unicode(str(self.info.image_dir), 'mbcs'), unicode(str(bmp_file), 'mbcs')))
self.vertical_image.width = 164
def insert_header(self, title, subtitle, bmp_file):
'''
Inserts a header with image, title and subtitle
'''
hbh = 57
hbw = 150
self.header = ui.Panel(
self,
0, 0 , self.width, hbh+2)
if bmp_file:
self.header.image = ui.Bitmap(
self.header,
0, 0, hbw, hbh)
self.header.image.set_image(
os.path.join(unicode(str(self.info.image_dir), 'mbcs'), unicode(str(bmp_file), 'mbcs')))
if title:
self.header.title = ui.Label(
self.header,
hbw + 20, 10, self.width - 200, 16,
text = title)
self.header.title.set_font(bold=True)
if subtitle:
self.header.subtitle = ui.Label(
self.header,
hbw + 20, 26, self.width - 200, 26,
text = subtitle)
self.header.line = ui.EtchedRectangle(self.header,0, hbh,self.width, 2)
self.header.height = hbh + 2
self.header.set_background_color(255,255,255)
def insert_main(self):
'''
Panel containing client widgets
Inserts a control conatiner
appropriately resized to take care of header and footer
'''
left=0
top = 0
width = self.width
height = self.height
if hasattr(self, "header"):
top += self.header.height
height -= self.header.height
if hasattr(self, "navigation"):
height -= self.navigation.height
if hasattr(self, "vertical_image"):
left = self.vertical_image.width
width -= left
self.main = ui.Panel(
self,
left, top, width, height)
self.main.height = height
self.main.width = width
def insert_navigation(self, button1_text=None, button2_text=None, button3_text=None, default=None):
'''
Inserts navigation buttons starting from the leftmost button
'''
nbw = 90
nbh = 24
sep_top = 6
sep_height = 2
if hasattr(self, "vertical_image"):
sep_top = 0
self.navigation = ui.Panel(
self,
0, self.height - nbh - 20 -sep_top - sep_height, self.width, nbh + 20 + sep_top + sep_height)
if not hasattr(self, "vertical_image"):
self.revision_label = ui.Label(
self.navigation,
10, 0, 40, 20,
"Rev %s" % self.info.revision)
self.revision_label.disable()
self.line = ui.EtchedRectangle(
self.navigation,
50, sep_top,self.width - 60, sep_height)
else:
self.line = ui.EtchedRectangle(
self.navigation,
0, sep_top, self.width, sep_height)
for i,text in enumerate((button1_text, button2_text, button3_text)):
if not text:
continue
if default and i + 1 == default:
Button = ui.DefaultButton
else:
Button = ui.Button
n = 0
for other in (button1_text, button2_text, button3_text)[i:]:
if other:
n += 1
button = Button(
self.navigation,
self.width -(nbw + 10) * n, 10 + sep_top + sep_height, nbw, nbh,
text=text)
if default and i + 1 == default:
button.set_focus()
setattr(self.navigation, "button%s" % ( i + 1), button)
self.navigation.height = nbh + 20 + sep_top + sep_height
```
|
```go
/*
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
*/
// Package dns implements a dns resolver to be installed as the default resolver
// in grpc.
package dns
import (
"context"
"encoding/json"
"errors"
"fmt"
"net"
"os"
"strconv"
"strings"
"sync"
"time"
grpclbstate "google.golang.org/grpc/balancer/grpclb/state"
"google.golang.org/grpc/grpclog"
"google.golang.org/grpc/internal/backoff"
"google.golang.org/grpc/internal/envconfig"
"google.golang.org/grpc/internal/grpcrand"
"google.golang.org/grpc/resolver"
"google.golang.org/grpc/serviceconfig"
)
// EnableSRVLookups controls whether the DNS resolver attempts to fetch gRPCLB
// addresses from SRV records. Must not be changed after init time.
var EnableSRVLookups = false
var logger = grpclog.Component("dns")
// Globals to stub out in tests. TODO: Perhaps these two can be combined into a
// single variable for testing the resolver?
var (
newTimer = time.NewTimer
newTimerDNSResRate = time.NewTimer
)
func init() {
resolver.Register(NewBuilder())
}
const (
defaultPort = "443"
defaultDNSSvrPort = "53"
golang = "GO"
// txtPrefix is the prefix string to be prepended to the host name for txt
// record lookup.
txtPrefix = "_grpc_config."
// In DNS, service config is encoded in a TXT record via the mechanism
// described in RFC-1464 using the attribute name grpc_config.
txtAttribute = "grpc_config="
)
var (
errMissingAddr = errors.New("dns resolver: missing address")
// Addresses ending with a colon that is supposed to be the separator
// between host and port is not allowed. E.g. "::" is a valid address as
// it is an IPv6 address (host only) and "[::]:" is invalid as it ends with
// a colon as the host and port separator
errEndsWithColon = errors.New("dns resolver: missing port after port-separator colon")
)
var (
defaultResolver netResolver = net.DefaultResolver
// To prevent excessive re-resolution, we enforce a rate limit on DNS
// resolution requests.
minDNSResRate = 30 * time.Second
)
var addressDialer = func(address string) func(context.Context, string, string) (net.Conn, error) {
return func(ctx context.Context, network, _ string) (net.Conn, error) {
var dialer net.Dialer
return dialer.DialContext(ctx, network, address)
}
}
var newNetResolver = func(authority string) (netResolver, error) {
host, port, err := parseTarget(authority, defaultDNSSvrPort)
if err != nil {
return nil, err
}
authorityWithPort := net.JoinHostPort(host, port)
return &net.Resolver{
PreferGo: true,
Dial: addressDialer(authorityWithPort),
}, nil
}
// NewBuilder creates a dnsBuilder which is used to factory DNS resolvers.
func NewBuilder() resolver.Builder {
return &dnsBuilder{}
}
type dnsBuilder struct{}
// Build creates and starts a DNS resolver that watches the name resolution of
// the target.
func (b *dnsBuilder) Build(target resolver.Target, cc resolver.ClientConn, opts resolver.BuildOptions) (resolver.Resolver, error) {
host, port, err := parseTarget(target.Endpoint(), defaultPort)
if err != nil {
return nil, err
}
// IP address.
if ipAddr, ok := formatIP(host); ok {
addr := []resolver.Address{{Addr: ipAddr + ":" + port}}
cc.UpdateState(resolver.State{Addresses: addr})
return deadResolver{}, nil
}
// DNS address (non-IP).
ctx, cancel := context.WithCancel(context.Background())
d := &dnsResolver{
host: host,
port: port,
ctx: ctx,
cancel: cancel,
cc: cc,
rn: make(chan struct{}, 1),
disableServiceConfig: opts.DisableServiceConfig,
}
if target.URL.Host == "" {
d.resolver = defaultResolver
} else {
d.resolver, err = newNetResolver(target.URL.Host)
if err != nil {
return nil, err
}
}
d.wg.Add(1)
go d.watcher()
return d, nil
}
// Scheme returns the naming scheme of this resolver builder, which is "dns".
func (b *dnsBuilder) Scheme() string {
return "dns"
}
type netResolver interface {
LookupHost(ctx context.Context, host string) (addrs []string, err error)
LookupSRV(ctx context.Context, service, proto, name string) (cname string, addrs []*net.SRV, err error)
LookupTXT(ctx context.Context, name string) (txts []string, err error)
}
// deadResolver is a resolver that does nothing.
type deadResolver struct{}
func (deadResolver) ResolveNow(resolver.ResolveNowOptions) {}
func (deadResolver) Close() {}
// dnsResolver watches for the name resolution update for a non-IP target.
type dnsResolver struct {
host string
port string
resolver netResolver
ctx context.Context
cancel context.CancelFunc
cc resolver.ClientConn
// rn channel is used by ResolveNow() to force an immediate resolution of the
// target.
rn chan struct{}
// wg is used to enforce Close() to return after the watcher() goroutine has
// finished. Otherwise, data race will be possible. [Race Example] in
// dns_resolver_test we replace the real lookup functions with mocked ones to
// facilitate testing. If Close() doesn't wait for watcher() goroutine
// finishes, race detector sometimes will warns lookup (READ the lookup
// function pointers) inside watcher() goroutine has data race with
// replaceNetFunc (WRITE the lookup function pointers).
wg sync.WaitGroup
disableServiceConfig bool
}
// ResolveNow invoke an immediate resolution of the target that this
// dnsResolver watches.
func (d *dnsResolver) ResolveNow(resolver.ResolveNowOptions) {
select {
case d.rn <- struct{}{}:
default:
}
}
// Close closes the dnsResolver.
func (d *dnsResolver) Close() {
d.cancel()
d.wg.Wait()
}
func (d *dnsResolver) watcher() {
defer d.wg.Done()
backoffIndex := 1
for {
state, err := d.lookup()
if err != nil {
// Report error to the underlying grpc.ClientConn.
d.cc.ReportError(err)
} else {
err = d.cc.UpdateState(*state)
}
var timer *time.Timer
if err == nil {
// Success resolving, wait for the next ResolveNow. However, also wait 30
// seconds at the very least to prevent constantly re-resolving.
backoffIndex = 1
timer = newTimerDNSResRate(minDNSResRate)
select {
case <-d.ctx.Done():
timer.Stop()
return
case <-d.rn:
}
} else {
// Poll on an error found in DNS Resolver or an error received from
// ClientConn.
timer = newTimer(backoff.DefaultExponential.Backoff(backoffIndex))
backoffIndex++
}
select {
case <-d.ctx.Done():
timer.Stop()
return
case <-timer.C:
}
}
}
func (d *dnsResolver) lookupSRV() ([]resolver.Address, error) {
if !EnableSRVLookups {
return nil, nil
}
var newAddrs []resolver.Address
_, srvs, err := d.resolver.LookupSRV(d.ctx, "grpclb", "tcp", d.host)
if err != nil {
err = handleDNSError(err, "SRV") // may become nil
return nil, err
}
for _, s := range srvs {
lbAddrs, err := d.resolver.LookupHost(d.ctx, s.Target)
if err != nil {
err = handleDNSError(err, "A") // may become nil
if err == nil {
// If there are other SRV records, look them up and ignore this
// one that does not exist.
continue
}
return nil, err
}
for _, a := range lbAddrs {
ip, ok := formatIP(a)
if !ok {
return nil, fmt.Errorf("dns: error parsing A record IP address %v", a)
}
addr := ip + ":" + strconv.Itoa(int(s.Port))
newAddrs = append(newAddrs, resolver.Address{Addr: addr, ServerName: s.Target})
}
}
return newAddrs, nil
}
func handleDNSError(err error, lookupType string) error {
dnsErr, ok := err.(*net.DNSError)
if ok && !dnsErr.IsTimeout && !dnsErr.IsTemporary {
// Timeouts and temporary errors should be communicated to gRPC to
// attempt another DNS query (with backoff). Other errors should be
// suppressed (they may represent the absence of a TXT record).
return nil
}
if err != nil {
err = fmt.Errorf("dns: %v record lookup error: %v", lookupType, err)
logger.Info(err)
}
return err
}
func (d *dnsResolver) lookupTXT() *serviceconfig.ParseResult {
ss, err := d.resolver.LookupTXT(d.ctx, txtPrefix+d.host)
if err != nil {
if envconfig.TXTErrIgnore {
return nil
}
if err = handleDNSError(err, "TXT"); err != nil {
return &serviceconfig.ParseResult{Err: err}
}
return nil
}
var res string
for _, s := range ss {
res += s
}
// TXT record must have "grpc_config=" attribute in order to be used as
// service config.
if !strings.HasPrefix(res, txtAttribute) {
logger.Warningf("dns: TXT record %v missing %v attribute", res, txtAttribute)
// This is not an error; it is the equivalent of not having a service
// config.
return nil
}
sc := canaryingSC(strings.TrimPrefix(res, txtAttribute))
return d.cc.ParseServiceConfig(sc)
}
func (d *dnsResolver) lookupHost() ([]resolver.Address, error) {
addrs, err := d.resolver.LookupHost(d.ctx, d.host)
if err != nil {
err = handleDNSError(err, "A")
return nil, err
}
newAddrs := make([]resolver.Address, 0, len(addrs))
for _, a := range addrs {
ip, ok := formatIP(a)
if !ok {
return nil, fmt.Errorf("dns: error parsing A record IP address %v", a)
}
addr := ip + ":" + d.port
newAddrs = append(newAddrs, resolver.Address{Addr: addr})
}
return newAddrs, nil
}
func (d *dnsResolver) lookup() (*resolver.State, error) {
srv, srvErr := d.lookupSRV()
addrs, hostErr := d.lookupHost()
if hostErr != nil && (srvErr != nil || len(srv) == 0) {
return nil, hostErr
}
state := resolver.State{Addresses: addrs}
if len(srv) > 0 {
state = grpclbstate.Set(state, &grpclbstate.State{BalancerAddresses: srv})
}
if !d.disableServiceConfig {
state.ServiceConfig = d.lookupTXT()
}
return &state, nil
}
// formatIP returns ok = false if addr is not a valid textual representation of
// an IP address. If addr is an IPv4 address, return the addr and ok = true.
// If addr is an IPv6 address, return the addr enclosed in square brackets and
// ok = true.
func formatIP(addr string) (addrIP string, ok bool) {
ip := net.ParseIP(addr)
if ip == nil {
return "", false
}
if ip.To4() != nil {
return addr, true
}
return "[" + addr + "]", true
}
// parseTarget takes the user input target string and default port, returns
// formatted host and port info. If target doesn't specify a port, set the port
// to be the defaultPort. If target is in IPv6 format and host-name is enclosed
// in square brackets, brackets are stripped when setting the host.
// examples:
// target: "www.google.com" defaultPort: "443" returns host: "www.google.com", port: "443"
// target: "ipv4-host:80" defaultPort: "443" returns host: "ipv4-host", port: "80"
// target: "[ipv6-host]" defaultPort: "443" returns host: "ipv6-host", port: "443"
// target: ":80" defaultPort: "443" returns host: "localhost", port: "80"
func parseTarget(target, defaultPort string) (host, port string, err error) {
if target == "" {
return "", "", errMissingAddr
}
if ip := net.ParseIP(target); ip != nil {
// target is an IPv4 or IPv6(without brackets) address
return target, defaultPort, nil
}
if host, port, err = net.SplitHostPort(target); err == nil {
if port == "" {
// If the port field is empty (target ends with colon), e.g. "[::1]:",
// this is an error.
return "", "", errEndsWithColon
}
// target has port, i.e ipv4-host:port, [ipv6-host]:port, host-name:port
if host == "" {
// Keep consistent with net.Dial(): If the host is empty, as in ":80",
// the local system is assumed.
host = "localhost"
}
return host, port, nil
}
if host, port, err = net.SplitHostPort(target + ":" + defaultPort); err == nil {
// target doesn't have port
return host, port, nil
}
return "", "", fmt.Errorf("invalid target address %v, error info: %v", target, err)
}
type rawChoice struct {
ClientLanguage *[]string `json:"clientLanguage,omitempty"`
Percentage *int `json:"percentage,omitempty"`
ClientHostName *[]string `json:"clientHostName,omitempty"`
ServiceConfig *json.RawMessage `json:"serviceConfig,omitempty"`
}
func containsString(a *[]string, b string) bool {
if a == nil {
return true
}
for _, c := range *a {
if c == b {
return true
}
}
return false
}
func chosenByPercentage(a *int) bool {
if a == nil {
return true
}
return grpcrand.Intn(100)+1 <= *a
}
func canaryingSC(js string) string {
if js == "" {
return ""
}
var rcs []rawChoice
err := json.Unmarshal([]byte(js), &rcs)
if err != nil {
logger.Warningf("dns: error parsing service config json: %v", err)
return ""
}
cliHostname, err := os.Hostname()
if err != nil {
logger.Warningf("dns: error getting client hostname: %v", err)
return ""
}
var sc string
for _, c := range rcs {
if !containsString(c.ClientLanguage, golang) ||
!chosenByPercentage(c.Percentage) ||
!containsString(c.ClientHostName, cliHostname) ||
c.ServiceConfig == nil {
continue
}
sc = string(*c.ServiceConfig)
break
}
return sc
}
```
|
```objective-c
//===- BTFDebug.h -----------------------------------------------*- C++ -*-===//
//
// See path_to_url for license information.
//
//===your_sha256_hash------===//
///
/// \file
/// This file contains support for writing BTF debug info.
///
//===your_sha256_hash------===//
#ifndef LLVM_LIB_TARGET_BPF_BTFDEBUG_H
#define LLVM_LIB_TARGET_BPF_BTFDEBUG_H
#include "llvm/ADT/StringMap.h"
#include "llvm/CodeGen/DebugHandlerBase.h"
#include <set>
#include <unordered_map>
#include "BTF.h"
namespace llvm {
class AsmPrinter;
class BTFDebug;
class DIType;
class MCStreamer;
class MCSymbol;
class MachineFunction;
/// The base class for BTF type generation.
class BTFTypeBase {
protected:
uint8_t Kind;
bool IsCompleted;
uint32_t Id;
struct BTF::CommonType BTFType;
public:
BTFTypeBase() : IsCompleted(false) {}
virtual ~BTFTypeBase() = default;
void setId(uint32_t Id) { this->Id = Id; }
uint32_t getId() { return Id; }
uint32_t roundupToBytes(uint32_t NumBits) { return (NumBits + 7) >> 3; }
/// Get the size of this BTF type entry.
virtual uint32_t getSize() { return BTF::CommonTypeSize; }
/// Complete BTF type generation after all related DebugInfo types
/// have been visited so their BTF type id's are available
/// for cross referece.
virtual void completeType(BTFDebug &BDebug) {}
/// Emit types for this BTF type entry.
virtual void emitType(MCStreamer &OS);
};
/// Handle several derived types include pointer, const,
/// volatile, typedef and restrict.
class BTFTypeDerived : public BTFTypeBase {
const DIDerivedType *DTy;
bool NeedsFixup;
public:
BTFTypeDerived(const DIDerivedType *Ty, unsigned Tag, bool NeedsFixup);
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
void setPointeeType(uint32_t PointeeType);
};
/// Handle struct or union forward declaration.
class BTFTypeFwd : public BTFTypeBase {
StringRef Name;
public:
BTFTypeFwd(StringRef Name, bool IsUnion);
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
};
/// Handle int type.
class BTFTypeInt : public BTFTypeBase {
StringRef Name;
uint32_t IntVal; ///< Encoding, offset, bits
public:
BTFTypeInt(uint32_t Encoding, uint32_t SizeInBits, uint32_t OffsetInBits,
StringRef TypeName);
uint32_t getSize() { return BTFTypeBase::getSize() + sizeof(uint32_t); }
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
};
/// Handle enumerate type.
class BTFTypeEnum : public BTFTypeBase {
const DICompositeType *ETy;
std::vector<struct BTF::BTFEnum> EnumValues;
public:
BTFTypeEnum(const DICompositeType *ETy, uint32_t NumValues);
uint32_t getSize() {
return BTFTypeBase::getSize() + EnumValues.size() * BTF::BTFEnumSize;
}
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
};
/// Handle array type.
class BTFTypeArray : public BTFTypeBase {
struct BTF::BTFArray ArrayInfo;
public:
BTFTypeArray(uint32_t ElemTypeId, uint32_t NumElems);
uint32_t getSize() { return BTFTypeBase::getSize() + BTF::BTFArraySize; }
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
};
/// Handle struct/union type.
class BTFTypeStruct : public BTFTypeBase {
const DICompositeType *STy;
bool HasBitField;
std::vector<struct BTF::BTFMember> Members;
public:
BTFTypeStruct(const DICompositeType *STy, bool IsStruct, bool HasBitField,
uint32_t NumMembers);
uint32_t getSize() {
return BTFTypeBase::getSize() + Members.size() * BTF::BTFMemberSize;
}
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
std::string getName();
};
/// Handle function pointer.
class BTFTypeFuncProto : public BTFTypeBase {
const DISubroutineType *STy;
std::unordered_map<uint32_t, StringRef> FuncArgNames;
std::vector<struct BTF::BTFParam> Parameters;
public:
BTFTypeFuncProto(const DISubroutineType *STy, uint32_t NumParams,
const std::unordered_map<uint32_t, StringRef> &FuncArgNames);
uint32_t getSize() {
return BTFTypeBase::getSize() + Parameters.size() * BTF::BTFParamSize;
}
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
};
/// Handle subprogram
class BTFTypeFunc : public BTFTypeBase {
StringRef Name;
public:
BTFTypeFunc(StringRef FuncName, uint32_t ProtoTypeId, uint32_t Scope);
uint32_t getSize() { return BTFTypeBase::getSize(); }
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
};
/// Handle variable instances
class BTFKindVar : public BTFTypeBase {
StringRef Name;
uint32_t Info;
public:
BTFKindVar(StringRef VarName, uint32_t TypeId, uint32_t VarInfo);
uint32_t getSize() { return BTFTypeBase::getSize() + 4; }
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
};
/// Handle data sections
class BTFKindDataSec : public BTFTypeBase {
AsmPrinter *Asm;
std::string Name;
std::vector<std::tuple<uint32_t, const MCSymbol *, uint32_t>> Vars;
public:
BTFKindDataSec(AsmPrinter *AsmPrt, std::string SecName);
uint32_t getSize() {
return BTFTypeBase::getSize() + BTF::BTFDataSecVarSize * Vars.size();
}
void addVar(uint32_t Id, const MCSymbol *Sym, uint32_t Size) {
Vars.push_back(std::make_tuple(Id, Sym, Size));
}
std::string getName() { return Name; }
void completeType(BTFDebug &BDebug);
void emitType(MCStreamer &OS);
};
/// String table.
class BTFStringTable {
/// String table size in bytes.
uint32_t Size;
/// A mapping from string table offset to the index
/// of the Table. It is used to avoid putting
/// duplicated strings in the table.
std::map<uint32_t, uint32_t> OffsetToIdMap;
/// A vector of strings to represent the string table.
std::vector<std::string> Table;
public:
BTFStringTable() : Size(0) {}
uint32_t getSize() { return Size; }
std::vector<std::string> &getTable() { return Table; }
/// Add a string to the string table and returns its offset
/// in the table.
uint32_t addString(StringRef S);
};
/// Represent one func and its type id.
struct BTFFuncInfo {
const MCSymbol *Label; ///< Func MCSymbol
uint32_t TypeId; ///< Type id referring to .BTF type section
};
/// Represent one line info.
struct BTFLineInfo {
MCSymbol *Label; ///< MCSymbol identifying insn for the lineinfo
uint32_t FileNameOff; ///< file name offset in the .BTF string table
uint32_t LineOff; ///< line offset in the .BTF string table
uint32_t LineNum; ///< the line number
uint32_t ColumnNum; ///< the column number
};
/// Represent one field relocation.
struct BTFFieldReloc {
const MCSymbol *Label; ///< MCSymbol identifying insn for the reloc
uint32_t TypeID; ///< Type ID
uint32_t OffsetNameOff; ///< The string to traverse types
uint32_t RelocKind; ///< What to patch the instruction
};
/// Collect and emit BTF information.
class BTFDebug : public DebugHandlerBase {
MCStreamer &OS;
bool SkipInstruction;
bool LineInfoGenerated;
uint32_t SecNameOff;
uint32_t ArrayIndexTypeId;
bool MapDefNotCollected;
BTFStringTable StringTable;
std::vector<std::unique_ptr<BTFTypeBase>> TypeEntries;
std::unordered_map<const DIType *, uint32_t> DIToIdMap;
std::map<uint32_t, std::vector<BTFFuncInfo>> FuncInfoTable;
std::map<uint32_t, std::vector<BTFLineInfo>> LineInfoTable;
std::map<uint32_t, std::vector<BTFFieldReloc>> FieldRelocTable;
StringMap<std::vector<std::string>> FileContent;
std::map<std::string, std::unique_ptr<BTFKindDataSec>> DataSecEntries;
std::vector<BTFTypeStruct *> StructTypes;
std::map<std::string, uint32_t> PatchImms;
std::map<StringRef, std::pair<bool, std::vector<BTFTypeDerived *>>>
FixupDerivedTypes;
std::set<const Function *>ProtoFunctions;
/// Add types to TypeEntries.
/// @{
/// Add types to TypeEntries and DIToIdMap.
uint32_t addType(std::unique_ptr<BTFTypeBase> TypeEntry, const DIType *Ty);
/// Add types to TypeEntries only and return type id.
uint32_t addType(std::unique_ptr<BTFTypeBase> TypeEntry);
/// @}
/// IR type visiting functions.
/// @{
void visitTypeEntry(const DIType *Ty);
void visitTypeEntry(const DIType *Ty, uint32_t &TypeId, bool CheckPointer,
bool SeenPointer);
void visitBasicType(const DIBasicType *BTy, uint32_t &TypeId);
void visitSubroutineType(
const DISubroutineType *STy, bool ForSubprog,
const std::unordered_map<uint32_t, StringRef> &FuncArgNames,
uint32_t &TypeId);
void visitFwdDeclType(const DICompositeType *CTy, bool IsUnion,
uint32_t &TypeId);
void visitCompositeType(const DICompositeType *CTy, uint32_t &TypeId);
void visitStructType(const DICompositeType *STy, bool IsStruct,
uint32_t &TypeId);
void visitArrayType(const DICompositeType *ATy, uint32_t &TypeId);
void visitEnumType(const DICompositeType *ETy, uint32_t &TypeId);
void visitDerivedType(const DIDerivedType *DTy, uint32_t &TypeId,
bool CheckPointer, bool SeenPointer);
void visitMapDefType(const DIType *Ty, uint32_t &TypeId);
/// @}
/// Get the file content for the subprogram. Certain lines of the file
/// later may be put into string table and referenced by line info.
std::string populateFileContent(const DISubprogram *SP);
/// Construct a line info.
void constructLineInfo(const DISubprogram *SP, MCSymbol *Label, uint32_t Line,
uint32_t Column);
/// Generate types and variables for globals.
void processGlobals(bool ProcessingMapDef);
/// Generate types for function prototypes.
void processFuncPrototypes(const Function *);
/// Generate one field relocation record.
void generateFieldReloc(const MCSymbol *ORSym, DIType *RootTy,
StringRef AccessPattern);
/// Populating unprocessed struct type.
unsigned populateStructType(const DIType *Ty);
/// Process relocation instructions.
void processReloc(const MachineOperand &MO);
/// Emit common header of .BTF and .BTF.ext sections.
void emitCommonHeader();
/// Emit the .BTF section.
void emitBTFSection();
/// Emit the .BTF.ext section.
void emitBTFExtSection();
protected:
/// Gather pre-function debug information.
void beginFunctionImpl(const MachineFunction *MF) override;
/// Post process after all instructions in this function are processed.
void endFunctionImpl(const MachineFunction *MF) override;
public:
BTFDebug(AsmPrinter *AP);
///
bool InstLower(const MachineInstr *MI, MCInst &OutMI);
/// Get the special array index type id.
uint32_t getArrayIndexTypeId() {
assert(ArrayIndexTypeId);
return ArrayIndexTypeId;
}
/// Add string to the string table.
size_t addString(StringRef S) { return StringTable.addString(S); }
/// Get the type id for a particular DIType.
uint32_t getTypeId(const DIType *Ty) {
assert(Ty && "Invalid null Type");
assert(DIToIdMap.find(Ty) != DIToIdMap.end() &&
"DIType not added in the BDIToIdMap");
return DIToIdMap[Ty];
}
void setSymbolSize(const MCSymbol *Symbol, uint64_t Size) override {}
/// Process beginning of an instruction.
void beginInstruction(const MachineInstr *MI) override;
/// Complete all the types and emit the BTF sections.
void endModule() override;
};
} // end namespace llvm
#endif
```
|
Cephalocassis manillensis is a species of catfish in the family Ariidae. It was described by Achille Valenciennes in 1840, originally under the genus Pimelodus. It occurs in the low reaches of large freshwater rivers, in the Philippines. It reaches a total length of .
References
Ariidae
Taxa named by Achille Valenciennes
Fish described in 1840
|
```go
package config
import (
"context"
"encoding/json"
"fmt"
"regexp"
"strings"
"github.com/werf/werf/v2/pkg/path_matcher"
)
func NewConfig(ctx context.Context, fileReader fileReader, configRelPath string) (c Config, err error) {
exist, err := fileReader.IsGiterminismConfigExistAnywhere(ctx, configRelPath)
if err != nil {
return c, err
}
if !exist {
return Config{}, nil
}
data, err := fileReader.ReadGiterminismConfig(ctx, configRelPath)
if err != nil {
return c, err
}
err = processWithOpenAPISchema(&data)
if err != nil {
return c, fmt.Errorf("the giterminism config validation failed: %w", err)
}
if err := json.Unmarshal(data, &c); err != nil {
panic(fmt.Sprint("unexpected error: ", err))
}
return c, err
}
type fileReader interface {
IsGiterminismConfigExistAnywhere(ctx context.Context, relPath string) (bool, error)
ReadGiterminismConfig(ctx context.Context, relPath string) ([]byte, error)
}
type Config struct {
Cli cli `json:"cli"`
Config config `json:"config"`
Helm helm `json:"helm"`
}
func (c Config) IsCustomTagsAccepted() bool {
return c.Cli.AllowCustomTags
}
func (c Config) IsUncommittedConfigAccepted() bool {
return c.Config.AllowUncommitted
}
func (c Config) UncommittedConfigTemplateFilePathMatcher() path_matcher.PathMatcher {
return c.Config.UncommittedTemplateFilePathMatcher()
}
func (c Config) UncommittedConfigGoTemplateRenderingFilePathMatcher() path_matcher.PathMatcher {
return c.Config.GoTemplateRendering.UncommittedFilePathMatcher()
}
func (c Config) IsConfigGoTemplateRenderingEnvNameAccepted(envName string) (bool, error) {
return c.Config.GoTemplateRendering.IsEnvNameAccepted(envName)
}
func (c Config) IsConfigStapelFromLatestAccepted() bool {
return c.Config.Stapel.AllowFromLatest
}
func (c Config) IsConfigStapelGitBranchAccepted() bool {
return c.Config.Stapel.Git.AllowBranch
}
func (c Config) IsConfigStapelMountBuildDirAccepted() bool {
return c.Config.Stapel.Mount.AllowBuildDir
}
func (c Config) IsConfigStapelMountFromPathAccepted(fromPath string) bool {
return c.Config.Stapel.Mount.IsFromPathAccepted(fromPath)
}
func (c Config) IsConfigDockerfileContextAddFileAccepted(relPath string) bool {
return c.Config.Dockerfile.IsContextAddFileAccepted(relPath)
}
func (c Config) IsUncommittedDockerfileAccepted(relPath string) bool {
return c.Config.Dockerfile.IsUncommittedAccepted(relPath)
}
func (c Config) IsUncommittedDockerignoreAccepted(relPath string) bool {
return c.Config.Dockerfile.IsUncommittedDockerignoreAccepted(relPath)
}
func (c Config) UncommittedHelmFilePathMatcher() path_matcher.PathMatcher {
return c.Helm.UncommittedHelmFilePathMatcher()
}
type cli struct {
AllowCustomTags bool `json:"allowCustomTags"`
}
type config struct {
AllowUncommitted bool `json:"allowUncommitted"`
AllowUncommittedTemplates []string `json:"allowUncommittedTemplates"`
GoTemplateRendering goTemplateRendering `json:"goTemplateRendering"`
Stapel stapel `json:"stapel"`
Dockerfile dockerfile `json:"dockerfile"`
}
func (c config) UncommittedTemplateFilePathMatcher() path_matcher.PathMatcher {
return pathMatcher(c.AllowUncommittedTemplates)
}
type goTemplateRendering struct {
AllowEnvVariables []string `json:"allowEnvVariables"`
AllowUncommittedFiles []string `json:"allowUncommittedFiles"`
}
func (r goTemplateRendering) IsEnvNameAccepted(name string) (bool, error) {
for _, pattern := range r.AllowEnvVariables {
match, err := func() (bool, error) {
if strings.HasPrefix(pattern, "/") && strings.HasSuffix(pattern, "/") {
expr := fmt.Sprintf("^%s$", pattern[1:len(pattern)-1])
r, err := regexp.Compile(expr)
if err != nil {
return false, err
}
return r.MatchString(name), nil
} else {
return pattern == name, nil
}
}()
if err != nil {
return false, err
}
if match {
return true, nil
}
}
return false, nil
}
func (r goTemplateRendering) UncommittedFilePathMatcher() path_matcher.PathMatcher {
return pathMatcher(r.AllowUncommittedFiles)
}
type stapel struct {
AllowFromLatest bool `json:"allowFromLatest"`
Git git `json:"git"`
Mount mount `json:"mount"`
}
type git struct {
AllowBranch bool `json:"allowBranch"`
}
type mount struct {
AllowBuildDir bool `json:"allowBuildDir"`
AllowFromPaths []string `json:"allowFromPaths"`
}
func (m mount) IsFromPathAccepted(path string) bool {
return isPathMatched(m.AllowFromPaths, path)
}
type dockerfile struct {
AllowUncommitted []string `json:"allowUncommitted"`
AllowUncommittedDockerignoreFiles []string `json:"allowUncommittedDockerignoreFiles"`
AllowContextAddFiles []string `json:"allowContextAddFiles"`
}
func (d dockerfile) IsContextAddFileAccepted(path string) bool {
return isPathMatched(d.AllowContextAddFiles, path)
}
func (d dockerfile) IsUncommittedAccepted(path string) bool {
return isPathMatched(d.AllowUncommitted, path)
}
func (d dockerfile) IsUncommittedDockerignoreAccepted(path string) bool {
return isPathMatched(d.AllowUncommittedDockerignoreFiles, path)
}
type helm struct {
AllowUncommittedFiles []string `json:"allowUncommittedFiles"`
}
func (h helm) UncommittedHelmFilePathMatcher() path_matcher.PathMatcher {
return pathMatcher(h.AllowUncommittedFiles)
}
func isPathMatched(patterns []string, p string) bool {
return pathMatcher(patterns).IsPathMatched(p)
}
func pathMatcher(patterns []string) path_matcher.PathMatcher {
if len(patterns) != 0 {
return path_matcher.NewPathMatcher(path_matcher.PathMatcherOptions{IncludeGlobs: patterns})
} else {
return path_matcher.NewFalsePathMatcher()
}
}
```
|
```javascript
const { MessageFactory } = require('botbuilder');
const { DialogBot } = require('./dialogBot');
/**
* RichCardsBot prompts a user to select a Rich Card and then returns the card
* that matches the user's selection.
*/
class RichCardsBot extends DialogBot {
constructor(conversationState, userState, dialog) {
super(conversationState, userState, dialog);
this.onMembersAdded(async (context, next) => {
const membersAdded = context.activity.membersAdded;
for (let cnt = 0; cnt < membersAdded.length; cnt++) {
if (membersAdded[cnt].id !== context.activity.recipient.id) {
const reply = MessageFactory.text('Welcome to CardBot. ' +
'This bot will show you different types of Rich Cards. ' +
'Please type anything to get started.');
await context.sendActivity(reply);
}
}
// By calling next() you ensure that the next BotHandler is run.
await next();
});
}
}
module.exports.RichCardsBot = RichCardsBot;
```
|
```java
//
//
// path_to_url
//
// Unless required by applicable law or agreed to in writing, software
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
package google.registry.tools.server;
import static google.registry.export.SyncGroupMembersAction.getGroupEmailAddressForContactType;
import static google.registry.request.Action.Method.POST;
import static jakarta.servlet.http.HttpServletResponse.SC_OK;
import static java.util.Arrays.asList;
import com.google.common.flogger.FluentLogger;
import google.registry.config.RegistryConfig.Config;
import google.registry.groups.GroupsConnection;
import google.registry.groups.GroupsConnection.Role;
import google.registry.model.registrar.Registrar;
import google.registry.model.registrar.RegistrarPocBase;
import google.registry.request.Action;
import google.registry.request.HttpException.BadRequestException;
import google.registry.request.HttpException.InternalServerErrorException;
import google.registry.request.Parameter;
import google.registry.request.Response;
import google.registry.request.auth.Auth;
import google.registry.util.Concurrent;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.List;
import java.util.Optional;
import javax.inject.Inject;
/** Action that creates Google Groups for a registrar's mailing lists. */
@Action(
service = Action.Service.TOOLS,
path = CreateGroupsAction.PATH,
method = POST,
auth = Auth.AUTH_ADMIN)
public class CreateGroupsAction implements Runnable {
public static final String PATH = "/_dr/admin/createGroups";
public static final String CLIENT_ID_PARAM = "clientId";
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
private static final int NUM_SIMULTANEOUS_CONNECTIONS = 5;
@Inject GroupsConnection groupsConnection;
@Inject Response response;
@Inject @Config("gSuiteDomainName") String gSuiteDomainName;
@Inject @Parameter("clientId") Optional<String> clientId;
@Inject CreateGroupsAction() {}
@Override
public void run() {
final Registrar registrar = initAndLoadRegistrar();
if (registrar == null) {
return;
}
List<RegistrarPocBase.Type> types = asList(RegistrarPocBase.Type.values());
// Concurrently create the groups for each RegistrarContact.Type, collecting the results from
// each call (which are either an Exception if it failed, or absent() if it succeeded).
List<Optional<Exception>> results =
Concurrent.transform(
types,
NUM_SIMULTANEOUS_CONNECTIONS,
type -> {
try {
String groupKey =
getGroupEmailAddressForContactType(
registrar.getRegistrarId(), type, gSuiteDomainName);
String parentGroup =
getGroupEmailAddressForContactType("registrar", type, gSuiteDomainName);
// Creates the group, then adds it as a member to the global registrar group for
// that type.
groupsConnection.createGroup(groupKey);
groupsConnection.addMemberToGroup(parentGroup, groupKey, Role.MEMBER);
return Optional.empty();
} catch (Exception e) {
return Optional.of(e);
}
});
// Return the correct server response based on the results of the group creations.
if (results.stream().anyMatch(Optional::isPresent)) {
StringWriter responseString = new StringWriter();
PrintWriter responseWriter = new PrintWriter(responseString);
for (int i = 0; i < results.size(); i++) {
Optional<Exception> e = results.get(i);
if (e.isPresent()) {
responseWriter.append(types.get(i).getDisplayName()).append(" => ");
e.get().printStackTrace(responseWriter);
logger.atSevere().withCause(e.get()).log(
"Could not create Google Group for registrar %s for type %s.",
registrar.getRegistrarName(), types.get(i));
} else {
responseWriter.printf("%s => Success%n", types.get(i).getDisplayName());
}
}
throw new InternalServerErrorException(responseString.toString());
} else {
response.setStatus(SC_OK);
response.setPayload("Success!");
logger.atInfo().log(
"Successfully created groups for registrar %s.", registrar.getRegistrarName());
}
}
private Registrar initAndLoadRegistrar() {
if (clientId.isEmpty()) {
respondToBadRequest("Error creating Google Groups, missing parameter: clientId");
}
Optional<Registrar> registrar = Registrar.loadByRegistrarId(clientId.get());
if (registrar.isEmpty()) {
respondToBadRequest(String.format(
"Error creating Google Groups; could not find registrar with id %s", clientId.get()));
}
return registrar.get();
}
private void respondToBadRequest(String message) {
logger.atSevere().log(message);
throw new BadRequestException(message);
}
}
```
|
```c++
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Project: Embedded Learning Library (ELL)
// File: LSTMNode.cpp (nodes)
// Authors: James Devine, Chris Lovett
//
////////////////////////////////////////////////////////////////////////////////////////////////////
#include "LSTMNode.h"
#include <math/include/MatrixOperations.h>
#include <utilities/include/Exception.h>
namespace ell
{
namespace nodes
{
//
// LSTMNode
//
template <typename ValueType>
LSTMNode<ValueType>::LSTMNode() :
RNNNode<ValueType>(),
_outputCellState(this, "outputCellState", 0)
{
}
template <typename ValueType>
LSTMNode<ValueType>::LSTMNode(const model::OutputPort<ValueType>& input,
const model::OutputPortBase& resetTrigger,
size_t hiddenUnits,
const model::OutputPort<ValueType>& inputWeights,
const model::OutputPort<ValueType>& hiddenWeights,
const model::OutputPort<ValueType>& inputBias,
const model::OutputPort<ValueType>& hiddenBias,
const ActivationType& activation,
const ActivationType& recurrentActivation,
bool validateWeights) :
RNNNode<ValueType>(input, resetTrigger, hiddenUnits, inputWeights, hiddenWeights, inputBias, hiddenBias, activation, false),
_recurrentActivation(recurrentActivation),
_outputCellState(this, "outputCellState", hiddenUnits),
_cellState(hiddenUnits)
{
if (validateWeights)
{
size_t stackHeight = 4; // LSTM has 4 stacked weights for (input, forget, cell, output).
size_t numRows = stackHeight * hiddenUnits;
size_t numColumns = input.Size();
if (inputWeights.Size() != numRows * numColumns)
{
throw utilities::InputException(utilities::InputExceptionErrors::invalidArgument,
ell::utilities::FormatString("The LSTMNode input weights are the wrong size, found %zu but expecting %zu", inputWeights.Size(), numRows * numColumns));
}
numColumns = hiddenUnits;
if (hiddenWeights.Size() != numRows * numColumns)
{
throw utilities::InputException(utilities::InputExceptionErrors::invalidArgument,
ell::utilities::FormatString("The LSTMNode hidden weights are the wrong size, found %zu but expecting %zu", hiddenWeights.Size(), numRows * numColumns));
}
if (inputBias.Size() != numRows)
{
throw utilities::InputException(utilities::InputExceptionErrors::invalidArgument,
ell::utilities::FormatString("The LSTMNode input bias vector is the wrong size, found %zu but expecting %zu", inputBias.Size(), numRows));
}
if (hiddenBias.Size() != numRows)
{
throw utilities::InputException(utilities::InputExceptionErrors::invalidArgument,
ell::utilities::FormatString("The LSTMNode hidden bias vector is the wrong size, found %zu but expecting %zu", hiddenBias.Size(), numRows));
}
}
}
template <typename ValueType>
void LSTMNode<ValueType>::Copy(model::ModelTransformer& transformer) const
{
const auto& newInput = transformer.GetCorrespondingInputs(this->_input);
const auto& newResetTrigger = transformer.GetCorrespondingInputs(this->_resetTrigger);
const auto& newInputWeights = transformer.GetCorrespondingInputs(this->_inputWeights);
const auto& newHiddenWeights = transformer.GetCorrespondingInputs(this->_hiddenWeights);
const auto& newInputBias = transformer.GetCorrespondingInputs(this->_inputBias);
const auto& newHiddenBias = transformer.GetCorrespondingInputs(this->_hiddenBias);
auto newNode = transformer.AddNode<LSTMNode>(newInput, newResetTrigger, this->_hiddenUnits, newInputWeights, newHiddenWeights, newInputBias, newHiddenBias, this->_activation, this->_recurrentActivation);
transformer.MapNodeOutput(this->output, newNode->output);
transformer.MapNodeOutput(this->outputCellState, newNode->outputCellState);
}
template <typename ValueType>
void LSTMNode<ValueType>::Compute() const
{
using ConstMatrixReferenceType = math::ConstRowMatrixReference<ValueType>;
/*
it = sigma(W_{ii} x + b_{ii} + W_{hi} h + b_{hi})
ft = sigma(W_{if} x + b_{if} + W_{hf} h + b_{hf})
gt = tanh(W_{ig} x + b_{ig} + W_{hg} h + b_{hg})
ot = sigma(W_{io} x + b_{io} + W_{ho} h + b_{ho})
ct = ft * c + it * gt
ht = ot * tanh(ct)
*/
size_t hiddenUnits = this->_hiddenUnits;
size_t stackHeight = 4; // LSTM has 4 stacked weights for (input, forget, cell, output).
VectorType inputVector(this->_input.GetValue());
size_t numRows = stackHeight * hiddenUnits;
size_t numColumns = inputVector.Size();
std::vector<ValueType> inputWeightsValue = this->_inputWeights.GetValue();
ConstMatrixReferenceType inputWeights(inputWeightsValue.data(), numRows, numColumns);
numColumns = hiddenUnits;
std::vector<ValueType> hiddenWeightsValue = this->_hiddenWeights.GetValue();
ConstMatrixReferenceType hiddenWeights(hiddenWeightsValue.data(), numRows, numColumns);
VectorType inputBias(this->_inputBias.GetValue());
VectorType hiddenBias(this->_hiddenBias.GetValue());
auto alpha = static_cast<ValueType>(1); // GEMV scale multiplication
auto beta = static_cast<ValueType>(1); // GEMV scale bias
// W_i * x + b_i
VectorType istack(inputBias); // add input bias
math::MultiplyScaleAddUpdate(alpha, inputWeights, inputVector, beta, istack);
// Wh * h + b_h
VectorType hstack(hiddenBias); // add hidden bias
math::MultiplyScaleAddUpdate(alpha, hiddenWeights, this->_hiddenState, beta, hstack);
// 4 slices of the vector representing the LSTM input, forget, cell, output layers.
auto slice1 = 0;
auto slice2 = hiddenUnits;
auto slice3 = 2 * hiddenUnits;
auto slice4 = 3 * hiddenUnits;
// inputGate = sigma(W_{ii} x + b_{ii} + W_{hi} h + b_{hi})
VectorType inputGate(hiddenUnits);
inputGate.CopyFrom(istack.GetSubVector(slice1, hiddenUnits));
inputGate += hstack.GetSubVector(slice1, hiddenUnits);
this->_recurrentActivation.Apply(inputGate);
// forgetGate = sigma(W_{if} x + b_{if} + W_{hf} h + b_{hf})
VectorType forgetGate(hiddenUnits);
forgetGate.CopyFrom(istack.GetSubVector(slice2, hiddenUnits));
forgetGate += hstack.GetSubVector(slice2, hiddenUnits);
this->_recurrentActivation.Apply(forgetGate);
// cellGate = tanh(W_{ig} x + b_{ig} + W_{hg} h + b_{hg})
VectorType cellGate(hiddenUnits);
cellGate.CopyFrom(istack.GetSubVector(slice3, hiddenUnits));
cellGate += hstack.GetSubVector(slice3, hiddenUnits);
this->_activation.Apply(cellGate);
// outputGate = sigma(W_{io} x + b_{io} + W_{ho} h + b_{ho})
VectorType outputGate(hiddenUnits);
outputGate.CopyFrom(istack.GetSubVector(slice4, hiddenUnits));
outputGate += hstack.GetSubVector(slice4, hiddenUnits);
this->_recurrentActivation.Apply(outputGate);
// ct = ft * c + it * gt
for (size_t i = 0; i < hiddenUnits; i++)
{
auto ft = forgetGate[i];
auto ct = this->_cellState[i];
auto it = inputGate[i];
auto gt = cellGate[i];
auto newValue = ft * ct + it * gt;
this->_cellState[i] = newValue;
}
// ht = ot * tanh(ct)
VectorType temp(hiddenUnits);
temp.CopyFrom(this->_cellState);
this->_activation.Apply(temp);
ElementwiseMultiplySet(outputGate, temp, this->_hiddenState);
if (this->ShouldReset())
{
const_cast<LSTMNode<ValueType>*>(this)->Reset();
}
// copy to output
this->_output.SetOutput(this->_hiddenState.ToArray());
this->outputCellState.SetOutput(this->_cellState.ToArray());
}
template <typename ValueType>
void LSTMNode<ValueType>::Reset()
{
this->_cellState.Reset();
this->_hiddenState.Reset();
}
template <typename ValueType>
void LSTMNode<ValueType>::Compile(model::IRMapCompiler& compiler, emitters::IRFunctionEmitter& function)
{
/*
it = sigma(W_{ii} x + b_{ii} + W_{hi} h + b_{hi})
ft = sigma(W_{if} x + b_{if} + W_{hf} h + b_{hf})
gt = tanh(W_{ig} x + b_{ig} + W_{hg} h + b_{hg})
ot = sigma(W_{io} x + b_{io} + W_{ho} h + b_{ho})
ct = ft * c + it * gt
ht = ot * tanh(ct)
*/
const int hiddenUnits = static_cast<int>(this->_hiddenUnits);
const int inputSize = static_cast<int>(this->input.Size());
size_t stackHeight = 4; // LSTM has 4 stacked weights for (input, forget, cell, output).
// Get LLVM references for all node inputs
auto input = compiler.EnsurePortEmitted(this->input);
auto inputWeights = compiler.EnsurePortEmitted(this->inputWeights);
auto hiddenWeights = compiler.EnsurePortEmitted(this->hiddenWeights);
auto inputBias = compiler.EnsurePortEmitted(this->inputBias);
auto hiddenBias = compiler.EnsurePortEmitted(this->hiddenBias);
// Get LLVM reference for node output
auto output = function.LocalArray(compiler.EnsurePortEmitted(this->output));
auto outputCellState = function.LocalArray(compiler.EnsurePortEmitted(this->outputCellState));
// Allocate global buffer for hidden state
emitters::IRModuleEmitter& module = function.GetModule();
auto hiddenStateVariable = module.Variables().AddVectorVariable<ValueType>(emitters::VariableScope::global, hiddenUnits);
auto hiddenStateValue = module.EnsureEmitted(*hiddenStateVariable);
auto hiddenStatePointer = function.PointerOffset(hiddenStateValue, 0); // convert "global variable" to a pointer
auto hiddenState = function.LocalArray(hiddenStatePointer);
auto& prevHiddenState = hiddenState;
// Allocate global buffer for cell state
auto cellStateVariable = module.Variables().AddVectorVariable<ValueType>(emitters::VariableScope::global, hiddenUnits);
auto cellStateValue = module.EnsureEmitted(*cellStateVariable);
auto cellStatePointer = function.PointerOffset(cellStateValue, 0); // convert "global variable" to a pointer
auto cellState = function.LocalArray(cellStatePointer);
auto& prevCellState = cellState;
// Allocate local variables
const size_t stackSize = hiddenUnits * stackHeight;
auto istack = function.LocalArray(function.Variable(emitters::GetVariableType<ValueType>(), stackSize));
auto hstack = function.LocalArray(function.Variable(emitters::GetVariableType<ValueType>(), stackSize));
auto inputGate = function.LocalArray(function.Variable(emitters::GetVariableType<ValueType>(), hiddenUnits));
auto forgetGate = function.LocalArray(function.Variable(emitters::GetVariableType<ValueType>(), hiddenUnits));
auto cellGate = function.LocalArray(function.Variable(emitters::GetVariableType<ValueType>(), hiddenUnits));
auto outputGate = function.LocalArray(function.Variable(emitters::GetVariableType<ValueType>(), hiddenUnits));
auto alpha = static_cast<ValueType>(1.0); // GEMV scaling of the matrix multipication
auto beta = static_cast<ValueType>(1.0); // GEMV scaling of the bias addition
// W_i * x + b_i, one matrix multiplication for all 4 gates (input, forget, cell, output)
function.MemoryCopy<ValueType>(inputBias, istack, stackSize); // Copy bias values into output so GEMM call accumulates them
function.CallGEMV(stackSize, inputSize, alpha, inputWeights, inputSize, input, 1, beta, istack, 1);
// W_h * h + b_h
function.MemoryCopy<ValueType>(hiddenBias, hstack, stackSize); // Copy bias values into output so GEMM call accumulates them
function.CallGEMV(stackSize, hiddenUnits, alpha, hiddenWeights, hiddenUnits, prevHiddenState, 1, beta, hstack, 1);
// the weights are stacked in 4 slices for (input, forget, cell, output).
auto istack_slice0 = istack;
auto istack_slice1 = function.LocalArray(function.PointerOffset(istack, function.LocalScalar(hiddenUnits)));
auto istack_slice2 = function.LocalArray(function.PointerOffset(istack, function.LocalScalar(hiddenUnits * 2)));
auto istack_slice3 = function.LocalArray(function.PointerOffset(istack, function.LocalScalar(hiddenUnits * 3)));
auto hstack_slice0 = hstack;
auto hstack_slice1 = function.LocalArray(function.PointerOffset(hstack, function.LocalScalar(hiddenUnits)));
auto hstack_slice2 = function.LocalArray(function.PointerOffset(hstack, function.LocalScalar(hiddenUnits * 2)));
auto hstack_slice3 = function.LocalArray(function.PointerOffset(hstack, function.LocalScalar(hiddenUnits * 3)));
// input_gate = sigma(W_{ iz } x + b_{ iz } + W_{ hz } h + b_{ hz })
function.For(hiddenUnits, [=](emitters::IRFunctionEmitter& fn, emitters::IRLocalScalar i) {
inputGate[i] = istack_slice0[i] + hstack_slice0[i];
});
this->ApplyActivation(function, this->_recurrentActivation, inputGate, hiddenUnits);
// forget_gate = sigma(W_{if} x + b_{if} + W_{hf} h + b_{hf})
function.For(hiddenUnits, [=](emitters::IRFunctionEmitter& fn, emitters::IRLocalScalar i) {
forgetGate[i] = istack_slice1[i] + hstack_slice1[i];
});
this->ApplyActivation(function, this->_recurrentActivation, forgetGate, hiddenUnits);
// cell_gate = tanh(W_{ig} x + b_{ig} + W_{hg} h + b_{hg})
function.For(hiddenUnits, [=](emitters::IRFunctionEmitter& fn, emitters::IRLocalScalar i) {
cellGate[i] = istack_slice2[i] + hstack_slice2[i];
});
this->ApplyActivation(function, this->_activation, cellGate, hiddenUnits);
// output_gate = sigma(W_{io} x + b_{io} + W_{ho} h + b_{ho})
function.For(hiddenUnits, [=](emitters::IRFunctionEmitter& fn, emitters::IRLocalScalar i) {
outputGate[i] = istack_slice3[i] + hstack_slice3[i];
});
this->ApplyActivation(function, this->_recurrentActivation, outputGate, hiddenUnits);
// cellState = forget_gate * cellState + input_gate * cell_gate
function.For(hiddenUnits, [=](emitters::IRFunctionEmitter& fn, emitters::IRLocalScalar i) {
auto ft = forgetGate[i];
auto ct = prevCellState[i];
auto it = inputGate[i];
auto gt = cellGate[i];
auto newValue = ft * ct + it * gt;
cellState[i] = newValue;
});
// newHiddenState = output_gate * tanh(ct), we'll reuse inputGate local variable to compile tanh(ct)
function.MemoryCopy<ValueType>(cellState, inputGate, hiddenUnits);
this->ApplyActivation(function, this->_activation, inputGate, hiddenUnits);
function.For(hiddenUnits, [=](emitters::IRFunctionEmitter& fn, emitters::IRLocalScalar i) {
auto tan_ct = inputGate[i];
auto ot = outputGate[i];
auto newValue = ot * tan_ct;
hiddenState[i] = newValue;
});
// Copy hidden state to the output.
function.MemoryCopy<ValueType>(hiddenState, output, hiddenUnits);
// Copy cell state to the output cell state
function.MemoryCopy<ValueType>(cellState, outputCellState, hiddenUnits);
// Add the internal reset function
std::string resetFunctionName = compiler.GetGlobalName(*this, "LSTMNodeReset");
emitters::IRFunctionEmitter& resetFunction = module.BeginResetFunction(resetFunctionName);
auto resetHiddenState = resetFunction.LocalArray(hiddenStateValue);
auto resetCellState = resetFunction.LocalArray(cellStateValue);
resetFunction.MemorySet<ValueType>(resetHiddenState, 0, function.Literal<uint8_t>(0), hiddenUnits);
resetFunction.MemorySet<ValueType>(resetCellState, 0, function.Literal<uint8_t>(0), hiddenUnits);
// resetFunction.Print("### LSTM Node was reset\n"); // this is a handy way to debug whether the VAD node is working or not.
module.EndResetFunction();
this->CompileReset(compiler, function, resetFunctionName);
}
template <typename ValueType>
void LSTMNode<ValueType>::WriteToArchive(utilities::Archiver& archiver) const
{
RNNNode<ValueType>::WriteToArchive(archiver);
_recurrentActivation.WriteToArchive(archiver);
}
template <typename ValueType>
void LSTMNode<ValueType>::ReadFromArchive(utilities::Unarchiver& archiver)
{
RNNNode<ValueType>::ReadFromArchive(archiver);
_recurrentActivation.ReadFromArchive(archiver);
this->_cellState.Resize(this->_hiddenUnits);
this->_outputCellState.SetSize(this->_hiddenUnits);
}
// Explicit specialization
template class LSTMNode<float>;
template class LSTMNode<double>;
} // namespace nodes
} // namespace ell
```
|
```c
/* $OpenBSD: fargs.c,v 1.26 2023/11/27 11:30:49 claudio Exp $ */
/*
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/stat.h>
#include <assert.h>
#include <err.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "extern.h"
#define RSYNC_PATH "rsync"
const char *
alt_base_mode(int mode)
{
switch (mode) {
case BASE_MODE_COMPARE:
return "--compare-dest";
case BASE_MODE_COPY:
return "--copy-dest";
case BASE_MODE_LINK:
return "--link-dest";
default:
errx(1, "unknown base mode %d", mode);
}
}
char **
fargs_cmdline(struct sess *sess, const struct fargs *f, size_t *skip)
{
arglist args;
size_t j;
char *rsync_path, *ap, *arg;
memset(&args, 0, sizeof args);
assert(f != NULL);
assert(f->sourcesz > 0);
if ((rsync_path = sess->opts->rsync_path) == NULL)
rsync_path = RSYNC_PATH;
if (f->host != NULL) {
/*
* Splice arguments from -e "foo bar baz" into array
* elements required for execve(2).
* This doesn't do anything fancy: it splits along
* whitespace into the array.
*/
if (sess->opts->ssh_prog) {
ap = strdup(sess->opts->ssh_prog);
if (ap == NULL)
err(ERR_NOMEM, NULL);
while ((arg = strsep(&ap, " \t")) != NULL) {
if (arg[0] == '\0') {
ap++; /* skip separators */
continue;
}
addargs(&args, "%s", arg);
}
} else
addargs(&args, "ssh");
addargs(&args, "%s", f->host);
addargs(&args, "%s", rsync_path);
if (skip)
*skip = args.num;
addargs(&args, "--server");
if (f->mode == FARGS_RECEIVER)
addargs(&args, "--sender");
} else {
addargs(&args, "%s", rsync_path);
addargs(&args, "--server");
}
/* Shared arguments. */
if (sess->opts->del)
addargs(&args, "--delete");
if (sess->opts->numeric_ids)
addargs(&args, "--numeric-ids");
if (sess->opts->preserve_gids)
addargs(&args, "-g");
if (sess->opts->preserve_links)
addargs(&args, "-l");
if (sess->opts->dry_run)
addargs(&args, "-n");
if (sess->opts->preserve_uids)
addargs(&args, "-o");
if (sess->opts->preserve_perms)
addargs(&args, "-p");
if (sess->opts->devices)
addargs(&args, "-D");
if (sess->opts->recursive)
addargs(&args, "-r");
if (sess->opts->preserve_times)
addargs(&args, "-t");
if (sess->opts->ignore_times)
addargs(&args, "-I");
if (verbose > 3)
addargs(&args, "-v");
if (verbose > 2)
addargs(&args, "-v");
if (verbose > 1)
addargs(&args, "-v");
if (verbose > 0)
addargs(&args, "-v");
if (sess->opts->one_file_system > 1)
addargs(&args, "-x");
if (sess->opts->one_file_system > 0)
addargs(&args, "-x");
if (sess->opts->specials && !sess->opts->devices)
addargs(&args, "--specials");
if (!sess->opts->specials && sess->opts->devices)
/* --devices is sent as -D --no-specials */
addargs(&args, "--no-specials");
if (sess->opts->max_size >= 0)
addargs(&args, "--max-size=%lld", sess->opts->max_size);
if (sess->opts->min_size >= 0)
addargs(&args, "--min-size=%lld", sess->opts->min_size);
/* extra options for the receiver (local is sender) */
if (f->mode == FARGS_SENDER) {
if (sess->opts->ignore_dir_times)
addargs(&args, "-O");
if (sess->opts->ignore_link_times)
addargs(&args, "-J");
if (sess->opts->size_only)
addargs(&args, "--size-only");
/* only add --compare-dest, etc if this is the sender */
if (sess->opts->alt_base_mode != 0) {
for (j = 0; j < MAX_BASEDIR; j++) {
if (sess->opts->basedir[j] == NULL)
break;
addargs(&args, "%s=%s",
alt_base_mode(sess->opts->alt_base_mode),
sess->opts->basedir[j]);
}
}
}
/* Terminate with a full-stop for reasons unknown. */
addargs(&args, ".");
if (f->mode == FARGS_RECEIVER) {
for (j = 0; j < f->sourcesz; j++)
addargs(&args, "%s", f->sources[j]);
} else
addargs(&args, "%s", f->sink);
return args.list;
}
```
|
Sachun (, also Romanized as Sāchūn and Sachoon; also known as Sāchūm) is a village in Khosuyeh Rural District, in the Central District of Zarrin Dasht County, Fars Province, Iran. At the 2006 census, its population was 1,160, in 264 families.
References
Populated places in Zarrin Dasht County
|
```css
Drop caps with `:first-letter`
Use `text-transform` to avoid screen-reader pronunciation errors
Change the color of the decoration with `text-decoration-color`
Use ```list-style-type``` to change the marker type in lists
Page breaks for printing
```
|
Sankara Narayana Menon Chundayil (February 15, 1929 – June 6, 2023) popularly known as Unni Gurukkal was a Kalaripayattu gurukkal or teacher from Chavakkad, Kerala, India. For his contributions in the field of Kalaripayattu, he has won several noted awards including Kerala Folklore Academy Award and India's fourth highest civilian honor Padma Shri.
Biography
Sankara Narayana Menon was born in 1929 on 15 February, to Mudavangattil Sankunni Panicker and Chundayil Kalyanikutti Amma, in a family of Kalaripayat experts at Niramaruthur near Tirur in present day Malappuram district of Kerala. In 1955, family came to Chavakkad in Thrissur district. His family were traditional leaders of the army of the king of Vettathunadu in Malabar. In 1957, the family established a Kalarippayattu school called Vallabhatta Kalari in Chavakkad.
At the age of six, Menon started learning Kalaripayattu from his father Sankunni Panicker. He made his debut at Mudavangad Kalari at the age of fourteen. He became a Kalari gurukkal (teacher) at the age of 16.
Unni Gurukkal spread Kalaripayattu, an Indian martial art from Kerala, outside India and started branches of his Kalaripayattu school in countries such as the United States, United Kingdom, United Arab Emirates]], France and Belgium. His team, which has performed Kalaripayattu in over 50 countries, also performed Kalaripayattu during Indian Prime Minister Narendra Modi's visit to Dubai.
He died on June 6, 2023.
Personal life
His wife Soudamini Amma is from Malappuram, from the Ozhur Kozhissery Punnakal family. Menon married Saudamini, at the age of 33. Their sons Krishnadas Gurukkal, Rajan Gurukkal and Dineshan Gurukkal are also Kalaripayattu practitioners. He has also a daughter.
Awards and honors
Padma Shri 2022
Kerala Folklore Akademi Gurupooja Award 2019
Kerala Kalamandalam Silver Jubilee Award
Nehru Yuvakendra Award
Suvarnamudra Award
Indian Kalaripayattu Association Lifetime Achievement Award
Then Kerala Governor P. Sathasivam honored Unni Gurukkal on National Sports Day
References
1929 births
2023 deaths
Kalarippayattu practitioners
Indian male martial artists
Recipients of the Padma Shri in sports
People from the Madras Presidency
|
```go
package main
import (
"github.com/GoesToEleven/golang-web-dev/040_mongodb/06_hands-on/starting-code/controllers"
"github.com/julienschmidt/httprouter"
"gopkg.in/mgo.v2"
"net/http"
)
func main() {
r := httprouter.New()
// Get a UserController instance
uc := controllers.NewUserController(getSession())
r.GET("/user/:id", uc.GetUser)
r.POST("/user", uc.CreateUser)
r.DELETE("/user/:id", uc.DeleteUser)
http.ListenAndServe("localhost:8080", r)
}
func getSession() *mgo.Session {
// Connect to our local mongo
s, err := mgo.Dial("mongodb://localhost")
// Check if connection error, is mongo running?
if err != nil {
panic(err)
}
return s
}
```
|
```java
/*
* This file is part of ViaVersion - path_to_url
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*
* along with this program. If not, see <path_to_url
*/
package com.viaversion.viaversion.protocols.v1_14_3to1_14_4;
import com.viaversion.viaversion.api.protocol.AbstractProtocol;
import com.viaversion.viaversion.api.type.Types;
import com.viaversion.viaversion.protocols.v1_13_2to1_14.packet.ClientboundPackets1_14;
import com.viaversion.viaversion.protocols.v1_13_2to1_14.packet.ServerboundPackets1_14;
import com.viaversion.viaversion.protocols.v1_14_3to1_14_4.packet.ClientboundPackets1_14_4;
public class Protocol1_14_3To1_14_4 extends AbstractProtocol<ClientboundPackets1_14, ClientboundPackets1_14_4, ServerboundPackets1_14, ServerboundPackets1_14> {
public Protocol1_14_3To1_14_4() {
super(ClientboundPackets1_14.class, ClientboundPackets1_14_4.class, null, null);
}
@Override
protected void registerPackets() {
registerClientbound(ClientboundPackets1_14.MERCHANT_OFFERS, wrapper -> {
wrapper.passthrough(Types.VAR_INT);
int size = wrapper.passthrough(Types.UNSIGNED_BYTE);
for (int i = 0; i < size; i++) {
wrapper.passthrough(Types.ITEM1_13_2);
wrapper.passthrough(Types.ITEM1_13_2);
if (wrapper.passthrough(Types.BOOLEAN)) {
wrapper.passthrough(Types.ITEM1_13_2);
}
wrapper.passthrough(Types.BOOLEAN);
wrapper.passthrough(Types.INT);
wrapper.passthrough(Types.INT);
wrapper.passthrough(Types.INT);
wrapper.passthrough(Types.INT);
wrapper.passthrough(Types.FLOAT);
wrapper.write(Types.INT, 0); // demand value added in pre5
}
});
}
}
```
|
```javascript
'use strict';
// This test verifies that JavaScript functions are being correctly sampled by
// Linux perf. The test runs a JavaScript script, sampling the execution with
// Linux perf. It then uses `perf script` to generate a human-readable output,
// and uses regular expressions to find samples of the functions defined in
// `fixtures/linux-perf.js`.
// NOTE (mmarchini): this test is meant to run only on Linux machines with Linux
// perf installed. It will skip if those criteria are not met.
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const { spawnSync } = require('child_process');
const fixtures = require('../common/fixtures');
const tmpdir = require('../common/tmpdir');
tmpdir.refresh();
if (process.config.variables.node_shared)
common.skip("can't test Linux perf with shared libraries yet");
if (!common.isLinux)
common.skip('only testing Linux for now');
const frequency = 99;
const repeat = 5;
// Expected number of samples we'll capture per repeat
const sampleCount = 10;
const sleepTime = sampleCount * (1.0 / frequency);
const perfFlags = [
'record',
`-F${frequency}`,
'-g',
];
const nodeCommonFlags = [
'--perf-basic-prof',
'--interpreted-frames-native-stack',
'--no-turbo-inlining', // Otherwise simple functions might get inlined.
];
const perfInterpretedFramesArgs = [
...perfFlags,
'--',
process.execPath,
...nodeCommonFlags,
'--no-opt',
fixtures.path('linux-perf.js'),
`${sleepTime}`,
`${repeat}`,
];
const perfCompiledFramesArgs = [
...perfFlags,
'--',
process.execPath,
...nodeCommonFlags,
'--always-opt',
fixtures.path('linux-perf.js'),
`${sleepTime}`,
`${repeat}`,
];
const perfArgsList = [
perfInterpretedFramesArgs, perfCompiledFramesArgs
];
const perfScriptArgs = [
'script',
];
const options = {
cwd: tmpdir.path,
encoding: 'utf-8',
};
let output = '';
for (const perfArgs of perfArgsList) {
const perf = spawnSync('perf', perfArgs, options);
assert.ifError(perf.error);
if (perf.status !== 0)
throw new Error(`Failed to execute 'perf': ${perf.stderr}`);
const perfScript = spawnSync('perf', perfScriptArgs, options);
assert.ifError(perfScript.error);
if (perfScript.status !== 0)
throw new Error(`Failed to execute perf script: ${perfScript.stderr}`);
output += perfScript.stdout;
}
const interpretedFunctionOneRe = /InterpretedFunction:functionOne/;
const compiledFunctionOneRe = /LazyCompile:\*functionOne/;
const interpretedFunctionTwoRe = /InterpretedFunction:functionTwo/;
const compiledFunctionTwoRe = /LazyCompile:\*functionTwo/;
assert.ok(output.match(interpretedFunctionOneRe),
"Couldn't find interpreted functionOne()");
assert.ok(output.match(compiledFunctionOneRe),
"Couldn't find compiled functionOne()");
assert.ok(output.match(interpretedFunctionTwoRe),
"Couldn't find interpreted functionTwo()");
assert.ok(output.match(compiledFunctionTwoRe),
"Couldn't find compiled functionTwo");
```
|
Big Timber Town Hall, at 225 McLeod St. in Big Timber in Sweet Grass County, Montana, was listed on the National Register of Historic Places in 1998.
It has Western Commercial architecture.
It is a two-story building with a rooftop belfry which served as Big Timber's town government center from 1909 to 1960. The town offices were on the second floor, and the fire department and jail were on the first floor. The jail was in a one-story addition added in 1913, which was demolished in 1955 to make way for a fire hall expansion.
It has also been known as Big Timber Fire Hall.
References
National Register of Historic Places in Sweet Grass County, Montana
Fire stations on the National Register of Historic Places in Montana
Government buildings completed in 1909
1909 establishments in Montana
City and town halls on the National Register of Historic Places in Montana
|
```java
/*
*
* path_to_url for terms and conditions.
*/
package org.liquidplayer.nodetest;
import androidx.test.InstrumentationRegistry;
import org.junit.Test;
import org.liquidplayer.javascript.JSContext;
import org.liquidplayer.javascript.JSFunction;
import org.liquidplayer.javascript.JSObject;
import org.liquidplayer.node.Process;
import java.util.concurrent.Semaphore;
import static org.junit.Assert.assertEquals;
public class PromiseTest {
private int counter = 0;
private Semaphore waitToFinish = new Semaphore(0);
@Test
public void testPromise()
{
final String code =
"new Promise((resolve,reject)=>{" +
" console.log('Wait 1 second to resolve');" +
" setTimeout(resolve,1000);" +
"})";
Process.EventListener listener = new Process.EventListener() {
@Override
public void onProcessStart(final Process process, final JSContext context) {
JSObject promise = context.evaluateScript(code).toObject();
promise.property("then").toFunction()
.call(promise, new JSFunction(context, "then") {
@SuppressWarnings("unused")
public void then() {
android.util.Log.d("PromiseTest", "Calling then");
counter++;
assertEquals(2,counter);
}
}
);
}
@Override
public void onProcessExit(final Process process, int exitCode) {
counter ++;
waitToFinish.release();
}
@Override
public void onProcessAboutToExit(Process process, int exitCode) {}
@Override
public void onProcessFailed(final Process process, Exception error) {
}
};
counter++;
new Process(
InstrumentationRegistry.getContext(),
"ProcessTest",
Process.kMediaAccessPermissionsRW,
listener
);
assertEquals(1, counter);
android.util.Log.d("PromiseTest", "Got Process.");
waitToFinish.acquireUninterruptibly();
assertEquals(3, counter);
android.util.Log.d("PromiseTest", "Process done");
}
}
```
|
```xml
<configuration>
<!-- Stack Driver Appender -->
<!-- See Config here: path_to_url#wzxhzdk57wzxhzdk58logback_appender_for_product_name -->
<appender name="CLOUD" class="com.google.cloud.logging.logback.LoggingAppender">
<!-- Optional : filter logs at or above a level -->
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>INFO</level>
</filter>
<log>application.log</log> <!-- Optional : default java.log -->
<flushLevel>WARN</flushLevel> <!-- Optional : default ERROR -->
</appender>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{YYYY-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="trace">
<!-- Add Console output for local dev -->
<appender-ref ref="STDOUT"/>
<!-- Add Cloud Appender to root output-->
<appender-ref ref="CLOUD" />
</root>
</configuration>
```
|
Sheavy is a Canadian band formed in 1993 in St. John's.
Formation and name change
Sheavy formed in St. John's, Newfoundland and Labrador, in 1993, and originally performed under the name Green Machine. In 1994, the band discovered there was another band in the United States with the same name, so a decision was made to rename the band Sheavy. The band's repertoire originally consisted of a sampling of Kyuss covers and an assortment of originals that would eventually make their way onto the Reproduction E.P., Slaves To Fashion, and ultimately Blue Sky Mind. A three-song 7-inch vinyl record was recorded in early 1995 at Jolly Roger Studios in St. John's. The band regularly performed in and around St. John's for the first few years at small clubs and venues such as The Loft, Sam Shades; Junctions and the LSPU Hall.
Record deal
The band recorded and mixed their debut album Blue Sky Mind over a single weekend during the summer of 1995. Later that summer, the band's bass player Paul Gruchy amicably left the band to focus on completing his university studies. There were about 1000 copies of the album released early in 1996, at which time Keith Foley also stepped in to complete the Sheavy line-up as the band's bassist. Although the audio quality of Blue Sky Mind was low, the original master tapes later revealed a much-higher audio quality existed. On the strength and popularity of the recording, however, Rise Above Records in the U.K. signed the band to a three-album deal. The band now had more resources available and were better prepared for work on the second studio album.
The Electric Sleep
The Electric Sleep was recorded in St. John's in the summer of 1997. Recording Engineer Don Ellis helped the band capture the simple, powerful sound they had been searching for. The result was an album one British reviewer deemed "the best Black Sabbath album in 25 years." Black Sabbath comparisons were nothing new for the band, but for every review filled with praise another came along that maintained they were little more than clones. The album's doomy title track could even be found on the web described as a lost Sabbath track. After a short tour of the U.K. and an invitation to play the Dynamo Open Air Festival in the Netherlands, the band headed back to the studio.
Celestial Hi-Fi
Recorded in the summer of 1999, in the workshop of Ren Squires' parents home, Celestial Hi-Fi, showcased the diversity of the Sheavy sound. The delicate nuances of "Persona" gave way to the doom of "Tales From The Afterburner," while tracks like "What's Up Mr. Zero" and "Strange Gods Strange Altars" illustrated the band's ability to throw hooks into the mix. Reviews of the album were generally positive.
Synchronized
In October 2001, the band converged on Keith's new home in Edmonton Alberta to write and rehearse for what would become the Synchronized sessions. Recorded in November 2001, with former Black Sabbath Producer/Engineer Mike Butcher at the helm, Synchronized once again saw the band diversify its sound with the addition of synthesizer, piano and drum loops. Despite, and perhaps because of the addition of Butcher, the album has been described as the band's least Sabbath-like release and nothing less than a sincere tribute to '70s rock. Written largely in the studio due to time constraints, the album's rock-solid production showcased a raw power unseen on the Sheavy's previous releases.
In September 2004, the band reunited in St. John's to begin writing songs for a new album. Due to a number of outside obligations, consummate band leader and drummer Ren Squires stepped quietly out of the spotlight. Kevin Dominic, a long-time friend of the band, was brought in to keep the band running. By November the band emerged with 11 new tracks. Over the next month, with the help of friend and Producer Rick Hollett, the band tracked Republic? above a Duckworth Street club called The Republic. Billy Anderson mixed Republic? in San Francisco, California, and the album was released on Rise Above Records in 2005.
In 2006, the band travelled to Europe for a two-week tour, which included a number of countries and festivals.
The Machine That Won the War
On March 3, 2007, Sheavy filmed a live performance at the Holy Heart of Mary High School auditorium in their hometown of St. John's. This performance was released as a DVD that accompanied the CD. The band recorded the studio album via analog instead of digital, and vocalist Steve Hennessey acted as the producer. The CD booklet features panels of artwork by a number of Newfoundland musicians and friends connected to the band, including two panels by Sheavy's original bassist Paul Gruchy. Each panel is directly inspired by, and corresponds to each track on the album.
Following that release, both Tommy Boland and Kevin Dominic amicably parted ways with the band. Evan Chaulker, who had previously toured with Sheavy, was brought in on guitar, and Jason Williams joined the band on drums.
The Golden Age of Daredevils and Disfigurine
In April 2009, original guitarist Dan Moore resigned from the band and announced his decision to the band's Facebook fan group - both via email. The band enlisted guitarist Chris White on guitar and premiered the new guitarist and new material at local St. John's venue Distortion in October 2009. Recording began on a forthcoming album, Disfigurine, roughly around the same period. Prior to its completion, though, the band took up the RPM challenge, which invites musicians to record a whole album of music, 10 songs or 35 minutes. The end result was an album entitled 'The Golden Age of Daredevils' which was released in late May 2010 and included songs written by the new lineup as well as material written by Dan Moore prior to his departure. The album 'Disfigurine' was later released in August 2010. Featuring a more metal style and some of the longest songs the band had ever written, Disfigurine pointed to a number of stylistic changes for the band.
The band played a handful of shows in the St. John's area between late 2010 and 2012 but song writing continued at a steady pace. Citing personal and family commitments bassist Keith Foley and guitarist Chris White parted ways with the band in the spring of 2012. In order to keep the song writing process rolling Steve asked local St. John's guitar players Barry Peters and Glen Tizzard (bass) to get together to jam and write. While Tizzard was able to join the band on a full-time basis, Peters helped to write and record but was unable to fully come on board due to out of province work commitments.
Line-up timeline
{| class="toccolours" border=1 cellpadding=2 cellspacing=0 style="float: right; width: 375px; margin: 0 0 1em 1em; border-collapse: collapse; border: 1px solid #E2E2E2;"
|+ <big>'Sheavy lineups</big>
|-
! bgcolor="#E7EBEE" | 1993
(as Green Machine)
|
Steve Hennessey - vocals
Dan Moore - guitar
Stirling Robertson - guitar
Paul Gruchy - bass guitar
Ren Squires - drums
|-
! bgcolor="#E7EBEE" | 1994–1995
|
Steve Hennessey - vocals
Dan Moore - guitar
Paul Gruchy - bass guitar
Ren Squires - drums
|-
! bgcolor="#E7EBEE" | 1996–2004
|
Steve Hennessey - vocals
Dan Moore - guitar
Keith Foley - bass guitar
Ren Squires - drums
|-
! bgcolor="#E7EBEE" | 2004–2005
|
Steve Hennessey - vocals
Dan Moore - guitar
Keith Foley - bass guitar
Kevin Dominic - drums
|-
! bgcolor="#E7EBEE" | 2005–2008
|
Steve Hennessey - vocals
Dan Moore - guitar
Tommy Boland - guitar
Keith Foley - bass guitar
Kevin Dominic - drums
|-
! bgcolor="#E7EBEE" | 2008–2009
|
Steve Hennessey - vocals
Dan Moore - guitar
Evan Chaulker - guitar
Keith Foley - bass guitar
Jason Williams - drums
|-
! bgcolor="#E7EBEE" | 2009–2012
|
Steve Hennessey - vocals
Chris White - guitar
Evan Chaulker - guitar
Keith Foley - bass guitar
Jason Williams - drums
|-
! bgcolor="#E7EBEE" | 2012–Present
|
Steve Hennessey - vocals
Evan Chaulker - guitar
Jason Williams - drums
Glen Tizzard - bass
|}
Discography
Studio albumsBlue Sky Mind CD (1996 Dallas Tarr Records), LP (2007 Dallas Tarr Records)The Electric Sleep CD (1998 Rise Above Records), LP (May 18, 2015 Rise Above Records)Celestial Hi-Fi CD (2000 Rise Above Records), LP (June 2, 2015 Rise Above Records)Synchronized CD (2002 Rise Above Records)Republic? CD (2005 Rise Above Records)The Machine That Won the War CD (2007 Candlelight Records)The Golden Age of Daredevils CD (2010 Dallas Tarr Records)Disfigurine CD (August 24, 2010, Dallas Tarr Records)Moons in Penumbra Cassette (December 6, 2013, Dallas Tarr Records), CD (December 16, 2013, Dallas Tarr Records), LP (March 2014 Hydro-Phonic Records)The Best of Sheavy: A Misleading Collection CD (May 8, 2014, Dallas Tarr Records)
Demos/EPsThe Reproduction E.P. Cassette (1994)Slaves to Fashion Cassette (1995)Untitled 3-song 7-inch EP (1995 Mag Wheel Records)Born Too Late split CD with Church of Misery (1997 Game Two Records)
Compilations appearances
"Electric Sleep (original version)" on Welcome to Meteor City CD (1998 MeteorCity Records)
"Pictures of You" on Rise 13 - Magick Rock Vol. 1 CD (1999 Rise Above Records)
"Face in the Mirror" on In the Groove CD (1999 The Music Cartel)
"Sea of Tomorrow" on I am Vengeance: Official Soundtrack CD (2007 MeteorCity)
VideoRepublic? at the Masonic Temple'' DVD (2005)
Live at Holy Heart bonus DVD in the deluxe "Machine that won the war"
References
External links
Sheavy Official Site
Sheavy at MySpace
Sheavy at BNR Metal Pages
Musical groups established in 1993
Musical groups from St. John's, Newfoundland and Labrador
Canadian doom metal musical groups
Canadian stoner rock musical groups
1993 establishments in Newfoundland and Labrador
|
Dillwynia palustris is a species of flowering plant in the family Fabaceae and is endemic to the Snowy Mountains in New South Wales. It is a weakly ascending to low-lying shrub with glabrous stems, linear, spirally twisted leaves and orange or yellow flowers with red markings.
Description
Dillwynia palustris is a weakly ascending to low-lying shrub that typically grows to a height of and sometimes forms mats, the stems and leaves usually glabrous. The leaves are linear, sometimes triangular in cross-section, long with a short point on the end. The flowers are arranged in umbels singly or in groups of up to three on a peduncle long with bracts and bracteoles long. The sepals are long and glabrous and the standard petal is long and orange to yellow with red markings. Flowering occurs in January and early February and the fruit is an oval pod long.
Taxonomy and naming
Dillwynia palustris was first formally described in 1999 by Peter C. Jobson and Peter H. Weston in the journal Telopea from specimens they collected near Tumbarumba in 1998. The specific epithet (palustris) means "marshy", referring to the preferred habitat of this species.
Distribution and habitat
This dillwynia grows in the ecotone between open woodland with a grassy understorey and swamps with permanent water. It is only known from three areas near the Tumut River catchment, near Talbingo and near Brindabella.
References
palustris
Flora of New South Wales
Plants described in 1999
|
```vue
<!--
-->
<template>
<NcContent v-shortkey.once="disableKeyboardShortcuts ? null : ['ctrl', 'f']"
:class="{ 'icon-loading': loading, 'in-call': isInCall }"
app-name="talk"
@shortkey.native="handleAppSearch">
<LeftSidebar v-if="getUserId && !isFullscreen" ref="leftSidebar" />
<NcAppContent>
<router-view />
</NcAppContent>
<RightSidebar :is-in-call="isInCall" />
<MediaSettings :recording-consent-given.sync="recordingConsentGiven" />
<SettingsDialog />
<ConversationSettingsDialog />
</NcContent>
</template>
<script>
import debounce from 'debounce'
import { provide } from 'vue'
import { getCurrentUser } from '@nextcloud/auth'
import { emit, subscribe, unsubscribe } from '@nextcloud/event-bus'
import { t } from '@nextcloud/l10n'
import { generateUrl } from '@nextcloud/router'
import NcAppContent from '@nextcloud/vue/dist/Components/NcAppContent.js'
import NcContent from '@nextcloud/vue/dist/Components/NcContent.js'
import { useIsMobile } from '@nextcloud/vue/dist/Composables/useIsMobile.js'
import ConversationSettingsDialog from './components/ConversationSettings/ConversationSettingsDialog.vue'
import LeftSidebar from './components/LeftSidebar/LeftSidebar.vue'
import MediaSettings from './components/MediaSettings/MediaSettings.vue'
import RightSidebar from './components/RightSidebar/RightSidebar.vue'
import SettingsDialog from './components/SettingsDialog/SettingsDialog.vue'
import { useActiveSession } from './composables/useActiveSession.js'
import { useHashCheck } from './composables/useHashCheck.js'
import { useIsInCall } from './composables/useIsInCall.js'
import { useSessionIssueHandler } from './composables/useSessionIssueHandler.js'
import { CONVERSATION, PARTICIPANT } from './constants.js'
import Router from './router/router.js'
import BrowserStorage from './services/BrowserStorage.js'
import { EventBus } from './services/EventBus.js'
import { leaveConversationSync } from './services/participantsService.js'
import { useFederationStore } from './stores/federation.ts'
import { checkBrowser } from './utils/browserCheck.js'
import { signalingKill } from './utils/webrtc/index.js'
export default {
name: 'App',
components: {
NcAppContent,
NcContent,
LeftSidebar,
RightSidebar,
SettingsDialog,
ConversationSettingsDialog,
MediaSettings,
},
setup() {
// Add provided value to check if we're in the main app or plugin
provide('Talk:isMainApp', true)
return {
isInCall: useIsInCall(),
isLeavingAfterSessionIssue: useSessionIssueHandler(),
isMobile: useIsMobile(),
isNextcloudTalkHashDirty: useHashCheck(),
supportSessionState: useActiveSession(),
federationStore: useFederationStore(),
}
},
data() {
return {
savedLastMessageMap: {},
defaultPageTitle: false,
loading: false,
isRefreshingCurrentConversation: false,
recordingConsentGiven: false,
debounceRefreshCurrentConversation: () => {},
}
},
computed: {
windowIsVisible() {
return this.$store.getters.windowIsVisible()
},
isFullscreen() {
return this.$store.getters.isFullscreen()
},
getUserId() {
return this.$store.getters.getUserId()
},
isSendingMessages() {
return this.$store.getters.isSendingMessages
},
warnLeaving() {
return !this.isLeavingAfterSessionIssue && this.isInCall
},
/**
* Keeps a list for all last message ids
*
* @return {object} Map with token => lastMessageId
*/
lastMessageMap() {
const conversationList = this.$store.getters.conversationsList
if (conversationList.length === 0) {
return {}
}
const lastMessage = {}
conversationList.forEach(conversation => {
lastMessage[conversation.token] = 0
if (conversation.lastMessage) {
const currentActorIsAuthor = conversation.lastMessage.actorType === this.$store.getters.getActorType()
&& conversation.lastMessage.actorId === this.$store.getters.getActorId()
if (currentActorIsAuthor) {
// Set a special value when the actor is the author so we can skip it.
// Can't use 0 though because hidden commands result in 0
// and they would hide other previously posted new messages
lastMessage[conversation.token] = -1
} else {
lastMessage[conversation.token] = Math.max(
conversation.lastMessage && conversation.lastMessage.id ? conversation.lastMessage.id : 0,
this.$store.getters.getLastKnownMessageId(conversation.token) ? this.$store.getters.getLastKnownMessageId(conversation.token) : 0,
)
}
}
})
return lastMessage
},
/**
* @return {boolean} Returns true, if
* - a conversation is newly added to lastMessageMap
* - a conversation has a different last message id then previously
*/
atLeastOneLastMessageIdChanged() {
let modified = false
Object.keys(this.lastMessageMap).forEach(token => {
if (!this.savedLastMessageMap[token] // Conversation is new
|| (this.savedLastMessageMap[token] !== this.lastMessageMap[token] // Last message changed
&& this.lastMessageMap[token] !== -1)) { // But is not from the current user
modified = true
}
})
return modified
},
/**
* The current conversation token
*
* @return {string} The token.
*/
token() {
return this.$store.getters.getToken()
},
/**
* The current conversation
*
* @return {object} The conversation object.
*/
currentConversation() {
return this.$store.getters.conversation(this.token)
},
/**
* Computes whether the current conversation is one to one
*
* @return {boolean} The result
*/
isOneToOne() {
return this.currentConversation?.type === CONVERSATION.TYPE.ONE_TO_ONE
|| this.currentConversation?.type === CONVERSATION.TYPE.ONE_TO_ONE_FORMER
},
disableKeyboardShortcuts() {
return OCP.Accessibility.disableKeyboardShortcuts()
},
},
watch: {
atLeastOneLastMessageIdChanged() {
if (this.windowIsVisible) {
return
}
this.setPageTitle(this.getConversationName(this.token), this.atLeastOneLastMessageIdChanged)
},
token(newValue, oldValue) {
// Collapse the sidebar if it's a one to one conversation
if (this.isOneToOne || BrowserStorage.getItem('sidebarOpen') === 'false' || this.isMobile) {
this.$store.dispatch('hideSidebar')
} else if (BrowserStorage.getItem('sidebarOpen') === 'true') {
this.$store.dispatch('showSidebar')
}
// Reset recording consent if switch doesn't happen within breakout rooms or main room
if (!this.isBreakoutRoomsNavigation(oldValue, newValue)) {
this.recordingConsentGiven = false
}
},
isInCall: {
immediate: true,
handler(value) {
const toggle = this.$refs.leftSidebar?.$refs.leftSidebar?.$el.querySelector('button.app-navigation-toggle')
if (value) {
toggle?.setAttribute('data-theme-dark', true)
} else {
toggle?.removeAttribute('data-theme-dark')
}
}
}
},
beforeCreate() {
const authorizedUser = getCurrentUser()?.uid || null
const lastLoggedInUser = BrowserStorage.getItem('last_logged_in_user')
if (authorizedUser !== lastLoggedInUser) {
// TODO introduce helper/util to list and clear all sensitive data
// or create BrowserSensitiveStorage for this purposes,
// if we have more than one source
BrowserStorage.removeItem('cachedConversations')
}
if (authorizedUser) {
BrowserStorage.setItem('last_logged_in_user', authorizedUser)
}
},
created() {
window.addEventListener('beforeunload', this.preventUnload)
},
beforeDestroy() {
this.debounceRefreshCurrentConversation.clear?.()
if (!getCurrentUser()) {
EventBus.off('should-refresh-conversations', this.debounceRefreshCurrentConversation)
}
document.removeEventListener('visibilitychange', this.changeWindowVisibility)
unsubscribe('notifications:action:execute', this.interceptNotificationActions)
window.removeEventListener('beforeunload', this.preventUnload)
},
beforeMount() {
if (!getCurrentUser()) {
EventBus.once('joined-conversation', () => {
this.fixmeDelayedSetupOfGuestUsers()
})
EventBus.on('should-refresh-conversations', this.debounceRefreshCurrentConversation)
}
if (this.$route.name === 'conversation') {
// Update current token in the token store
this.$store.dispatch('updateToken', this.$route.params.token)
// Automatically join the conversation as well
this.$store.dispatch('joinConversation', { token: this.$route.params.token })
}
window.addEventListener('resize', this.onResize)
document.addEventListener('visibilitychange', this.changeWindowVisibility)
this.onResize()
window.addEventListener('unload', () => {
console.info('Navigating away, leaving conversation')
if (this.token) {
// We have to do this synchronously, because in unload and beforeunload
// Promises, async and await are prohibited.
signalingKill()
if (!this.isLeavingAfterSessionIssue) {
leaveConversationSync(this.token)
}
}
})
EventBus.on('switch-to-conversation', (params) => {
if (this.isInCall) {
this.$store.dispatch('setForceCallView', true)
const enableAudio = !BrowserStorage.getItem('audioDisabled_' + this.token)
const enableVideo = !BrowserStorage.getItem('videoDisabled_' + this.token)
const enableVirtualBackground = !!BrowserStorage.getItem('virtualBackgroundEnabled_' + this.token)
const virtualBackgroundType = BrowserStorage.getItem('virtualBackgroundType_' + this.token)
const virtualBackgroundBlurStrength = BrowserStorage.getItem('virtualBackgroundBlurStrength_' + this.token)
const virtualBackgroundUrl = BrowserStorage.getItem('virtualBackgroundUrl_' + this.token)
EventBus.once('joined-conversation', async ({ token }) => {
if (params.token !== token) {
return
}
if (enableAudio) {
BrowserStorage.removeItem('audioDisabled_' + token)
} else {
BrowserStorage.setItem('audioDisabled_' + token, 'true')
}
if (enableVideo) {
BrowserStorage.removeItem('videoDisabled_' + token)
} else {
BrowserStorage.setItem('videoDisabled_' + token, 'true')
}
if (enableVirtualBackground) {
BrowserStorage.setItem('virtualBackgroundEnabled_' + token, 'true')
} else {
BrowserStorage.removeItem('virtualBackgroundEnabled_' + token)
}
if (virtualBackgroundType) {
BrowserStorage.setItem('virtualBackgroundType_' + token, virtualBackgroundType)
} else {
BrowserStorage.removeItem('virtualBackgroundType_' + token)
}
if (virtualBackgroundBlurStrength) {
BrowserStorage.setItem('virtualBackgroundBlurStrength' + token, virtualBackgroundBlurStrength)
} else {
BrowserStorage.removeItem('virtualBackgroundBlurStrength' + token)
}
if (virtualBackgroundUrl) {
BrowserStorage.setItem('virtualBackgroundUrl_' + token, virtualBackgroundUrl)
} else {
BrowserStorage.removeItem('virtualBackgroundUrl_' + token)
}
const conversation = this.$store.getters.conversation(token)
let flags = PARTICIPANT.CALL_FLAG.IN_CALL
if (conversation.permissions & PARTICIPANT.PERMISSIONS.PUBLISH_AUDIO) {
flags |= PARTICIPANT.CALL_FLAG.WITH_AUDIO
}
if (conversation.permissions & PARTICIPANT.PERMISSIONS.PUBLISH_VIDEO) {
flags |= PARTICIPANT.CALL_FLAG.WITH_VIDEO
}
await this.$store.dispatch('joinCall', {
token: params.token,
participantIdentifier: this.$store.getters.getParticipantIdentifier(),
flags,
silent: true,
recordingConsent: this.recordingConsentGiven,
})
this.$store.dispatch('setForceCallView', false)
})
}
this.$router.push({ name: 'conversation', params: { token: params.token, skipLeaveWarning: true } })
})
EventBus.on('conversations-received', (params) => {
if (this.$route.name === 'conversation'
&& !this.$store.getters.conversation(this.token)) {
if (!params.singleConversation) {
console.info('Conversations received, but the current conversation is not in the list, trying to get potential public conversation manually')
this.refreshCurrentConversation()
} else {
console.info('Conversation received, but the current conversation is not in the list. Redirecting to not found page')
this.$router.push({ name: 'notfound', params: { skipLeaveWarning: true } })
this.$store.dispatch('updateToken', '')
}
}
})
EventBus.on('forbidden-route', (params) => {
this.$router.push({ name: 'forbidden' })
})
/**
* Listens to the conversationsReceived globalevent, emitted by the conversationsList
* component each time a new batch of conversations is received and processed in
* the store.
*/
EventBus.once('conversations-received', () => {
if (this.$route.name === 'conversation') {
// Adjust the page title once the conversation list is loaded
this.setPageTitle(this.getConversationName(this.token), false)
}
if (!getCurrentUser()) {
// Set the current actor/participant for guests
const conversation = this.$store.getters.conversation(this.token)
this.$store.dispatch('setCurrentParticipant', conversation)
}
})
const beforeRouteChangeListener = (to, from, next) => {
if (this.isNextcloudTalkHashDirty) {
// Nextcloud Talk configuration changed, reload the page when changing configuration
window.location = generateUrl('call/' + to.params.token)
return
}
/**
* This runs whenever the new route is a conversation.
*/
if (to.name === 'conversation') {
// Update current token in the token store
this.$store.dispatch('updateToken', to.params.token)
}
/**
* Fires a global event that tells the whole app that the route has changed. The event
* carries the from and to objects as payload
*/
EventBus.emit('route-change', { from, to })
next()
}
/**
* Global before guard, this is called whenever a navigation is triggered.
*/
Router.beforeEach((to, from, next) => {
if (this.warnLeaving && !to.params?.skipLeaveWarning) {
OC.dialogs.confirmDestructive(
t('spreed', 'Navigating away from the page will leave the call in {conversation}', {
conversation: this.getConversationName(this.token),
}),
t('spreed', 'Leave call'),
{
type: OC.dialogs.YES_NO_BUTTONS,
confirm: t('spreed', 'Leave call'),
confirmClasses: 'error',
cancel: t('spreed', 'Stay in call'),
},
(decision) => {
if (!decision) {
return
}
beforeRouteChangeListener(to, from, next)
}
)
} else {
beforeRouteChangeListener(to, from, next)
}
})
Router.afterEach((to) => {
/**
* Change the page title only after the route was changed
*/
if (to.name === 'conversation') {
// Page title
const nextConversationName = this.getConversationName(to.params.token)
this.setPageTitle(nextConversationName)
} else if (to.name === 'notfound') {
this.setPageTitle('')
}
if (to.hash === '#direct-call') {
emit('talk:media-settings:show')
}
})
if (getCurrentUser()) {
console.debug('Setting current user')
this.$store.dispatch('setCurrentUser', getCurrentUser())
} else {
console.debug('Can not set current user because it\'s a guest')
}
},
async mounted() {
this.debounceRefreshCurrentConversation = debounce(this.refreshCurrentConversation, 3000)
if (!IS_DESKTOP) {
checkBrowser()
}
// Check sidebar status in previous sessions
if (BrowserStorage.getItem('sidebarOpen') === 'false') {
this.$store.dispatch('hideSidebar')
} else if (BrowserStorage.getItem('sidebarOpen') === 'true') {
this.$store.dispatch('showSidebar')
}
if (this.$route.name === 'root' && this.isMobile) {
await this.$nextTick()
emit('toggle-navigation', {
open: true,
})
}
if (this.$route.hash === '#direct-call') {
emit('talk:media-settings:show')
}
subscribe('notifications:action:execute', this.interceptNotificationActions)
subscribe('notifications:notification:received', this.interceptNotificationReceived)
},
methods: {
t,
/**
* Intercept clicking actions on notifications and open the conversation without a page reload instead
*
* @param {object} event The event object provided by the notifications app
* @param {object} event.notification The notification object
* @param {string} event.notification.app The app ID of the app providing the notification
* @param {object} event.action The action that was clicked
* @param {string} event.action.url The URL the action is aiming at
* @param {string} event.action.type The request type used for the action
* @param {boolean} event.cancelAction Option to cancel the action so no page reload is happening
*/
async interceptNotificationActions(event) {
if (event.notification.app !== 'spreed') {
return
}
switch (event.action.type) {
case 'WEB': {
const load = event.action.url.split('/call/').pop()
if (!load) {
return
}
const [token, hash] = load.split('#')
this.$router.push({
name: 'conversation',
hash: hash ? `#${hash}` : '',
params: {
token,
},
})
event.cancelAction = true
break
}
case 'POST': {
// Federation invitation handling
if (event.notification.objectType === 'remote_talk_share') {
try {
event.cancelAction = true
const conversation = await this.federationStore.acceptShare(event.notification.objectId)
if (conversation.token) {
this.$store.dispatch('addConversation', conversation)
this.$router.push({ name: 'conversation', params: { token: conversation.token } })
}
} catch (error) {
console.error(error)
}
}
break
}
case 'DELETE': {
// Federation invitation handling
if (event.notification.objectType === 'remote_talk_share') {
try {
event.cancelAction = true
this.federationStore.rejectShare(event.notification.objectId)
} catch (error) {
console.error(error)
}
}
break
}
default: break
}
},
/**
* Intercept
*
* @param {object} event The event object provided by the notifications app
* @param {object} event.notification The notification object
* @param {string} event.notification.app The app ID of the app providing the notification
*/
interceptNotificationReceived(event) {
if (event.notification.app !== 'spreed') {
return
}
switch (event.notification.objectType) {
case 'chat': {
if (event.notification.subjectRichParameters?.reaction) {
// Ignore reaction notifications in case of one-to-one and always-notify
return
}
this.$store.dispatch('updateConversationLastMessageFromNotification', {
notification: event.notification,
})
break
}
case 'call': {
this.$store.dispatch('updateCallStateFromNotification', {
notification: event.notification,
})
break
}
// Federation invitation handling
case 'remote_talk_share': {
this.federationStore.addInvitationFromNotification(event.notification)
break
}
default: break
}
},
fixmeDelayedSetupOfGuestUsers() {
// FIXME Refresh the data now that the user joined the conversation
// The join request returns this data already, but it's lost in the signaling code
this.refreshCurrentConversation()
window.setInterval(() => {
this.refreshCurrentConversation()
}, 30000)
},
refreshCurrentConversation() {
this.fetchSingleConversation(this.token)
},
changeWindowVisibility() {
this.$store.dispatch('setWindowVisibility', !document.hidden)
if (this.windowIsVisible) {
// Remove the potential "*" marker for unread chat messages
let title = this.getConversationName(this.token)
if (window.document.title.indexOf(t('spreed', 'Duplicate session')) === 0) {
title = t('spreed', 'Duplicate session')
}
this.setPageTitle(title, false)
} else {
// Copy the last message map to the saved version,
// this will be our reference to check if any chat got a new
// message since the last visit
this.savedLastMessageMap = this.lastMessageMap
}
},
/**
* Set the page title to the conversation name
*
* @param {string} title Prefix for the page title e.g. conversation name
* @param {boolean} showAsterix Prefix for the page title e.g. conversation name
*/
setPageTitle(title, showAsterix) {
if (this.defaultPageTitle === false) {
// On the first load we store the current page title "Talk - Nextcloud",
// so we can append it every time again
this.defaultPageTitle = window.document.title
// Coming from a "Duplicate session - Talk - " page?
if (this.defaultPageTitle.indexOf(' - ' + t('spreed', 'Talk') + ' - ') !== -1) {
this.defaultPageTitle = this.defaultPageTitle.substring(this.defaultPageTitle.indexOf(' - ' + t('spreed', 'Talk') + ' - ') + 3)
}
// When a conversation is opened directly, the "Talk - " part is
// missing from the title
if (!IS_DESKTOP && this.defaultPageTitle.indexOf(t('spreed', 'Talk') + ' - ') !== 0) {
this.defaultPageTitle = t('spreed', 'Talk') + ' - ' + this.defaultPageTitle
}
}
let newTitle = this.defaultPageTitle
if (title !== '') {
newTitle = `${title} - ${newTitle}`
}
if (showAsterix && !newTitle.startsWith('* ')) {
newTitle = '* ' + newTitle
}
window.document.title = newTitle
},
onResize() {
this.windowHeight = window.innerHeight - document.getElementById('header').clientHeight
},
preventUnload(event) {
if (!this.warnLeaving && !this.isSendingMessages) {
return
}
event.preventDefault()
},
/**
* Get a conversation's name.
*
* @param {string} token The conversation's token
* @return {string} The conversation's name
*/
getConversationName(token) {
if (!this.$store.getters.conversation(token)) {
return ''
}
return this.$store.getters.conversation(token).displayName
},
async fetchSingleConversation(token) {
if (this.isRefreshingCurrentConversation) {
return
}
this.isRefreshingCurrentConversation = true
try {
/**
* Fetches a single conversation
*/
await this.$store.dispatch('fetchConversation', { token })
/**
* Emits a global event that is used in App.vue to update the page title once the
* ( if the current route is a conversation and once the conversations are received)
*/
EventBus.emit('conversations-received', {
singleConversation: true,
})
} catch (exception) {
console.info('Conversation received, but the current conversation is not in the list. Redirecting to /apps/spreed')
this.$router.push({ name: 'notfound', params: { skipLeaveWarning: true } })
this.$store.dispatch('updateToken', '')
this.$store.dispatch('hideSidebar')
} finally {
this.isRefreshingCurrentConversation = false
}
},
// Upon pressing Ctrl+F, focus SearchBox native input in the LeftSidebar
handleAppSearch() {
emit('toggle-navigation', {
open: true,
})
this.$nextTick(() => {
this.$refs.leftSidebar.$refs.searchBox.focus()
})
},
/**
* Check if conversation was switched within breakout rooms and parent room.
*
* @param {string} oldToken The old conversation's token
* @param {string} newToken The new conversation's token
* @return {boolean}
*/
isBreakoutRoomsNavigation(oldToken, newToken) {
const oldConversation = this.$store.getters.conversation(oldToken)
const newConversation = this.$store.getters.conversation(newToken)
// One of rooms is undefined
if (!oldConversation || !newConversation) {
return false
}
// Parent to breakout
if (oldConversation.breakoutRoomMode !== CONVERSATION.BREAKOUT_ROOM_MODE.NOT_CONFIGURED
&& newConversation.objectType === CONVERSATION.OBJECT_TYPE.BREAKOUT_ROOM) {
return true
}
// Breakout to parent
if (oldConversation.objectType === CONVERSATION.OBJECT_TYPE.BREAKOUT_ROOM
&& newConversation.breakoutRoomMode !== CONVERSATION.BREAKOUT_ROOM_MODE.NOT_CONFIGURED) {
return true
}
// Breakout to breakout
return oldConversation.objectType === CONVERSATION.OBJECT_TYPE.BREAKOUT_ROOM && newConversation.objectType === CONVERSATION.OBJECT_TYPE.BREAKOUT_ROOM
}
},
}
</script>
<style lang="scss">
/* FIXME: remove after path_to_url is solved */
.mx-datepicker-main.mx-datepicker-popup {
z-index: 10001 !important;
}
/* FIXME: remove after path_to_url is released */
body .modal-wrapper * {
box-sizing: border-box;
}
/* FIXME: Align styles of NcModal header with NcDialog header. Remove if all are migrated */
.modal-wrapper h2.nc-dialog-alike-header {
font-size: 21px;
text-align: center;
height: fit-content;
min-height: var(--default-clickable-area);
line-height: var(--default-clickable-area);
overflow-wrap: break-word;
margin-block: 0 12px;
}
</style>
<style lang="scss" scoped>
.content {
&.in-call {
:deep(.app-content) {
background-color: transparent;
}
}
// Fix fullscreen black bar on top
&:fullscreen {
padding-top: 0;
:deep(.app-sidebar) {
height: 100vh !important;
}
}
}
</style>
```
|
The Australian Dream is a belief in Australia of home-ownership leading to success and security.
The Australian Dream or Australian Dream may also refer to:
The Australian Dream (1943), book of verse by Australian poet and author Ian Mudie
Australian Dream (1986 film), an Australian comedy film directed by Jackie McKimmie
The Australian Dream (2019 film), a documentary featuring the AFL player Adam Goodes
Australian Dream, brand name of an analgesic cream containing histamine dihydrochloride
See also
The Dreaming, Aboriginal Australian worldview
|
```xml
import { Component } from '@angular/core';
import { Code } from '@domain/code';
import { NodeService } from '@service/nodeservice';
@Component({
selector: 'filter-doc',
template: `
<app-docsectiontext>
<p>
Filtering is enabled by adding the <i>filter</i> property, by default label property of a node is used to compare against the value in the text field, in order to customize which field(s) should be used during search define
<i>filterBy</i> property. In addition <i>filterMode</i> specifies the filtering strategy. In <i>lenient</i> mode when the query matches a node, children of the node are not searched further as all descendants of the node are included.
On the other hand, in <i>strict</i> mode when the query matches a node, filtering continues on all descendants.
</p>
</app-docsectiontext>
<div class="card flex justify-content-center">
<p-treeSelect class="md:w-20rem w-full" containerStyleClass="w-full" [(ngModel)]="selectedNodes" [options]="nodes" placeholder="Select Item" [filter]="true" [filterInputAutoFocus]="true" />
</div>
<app-code [code]="code" selector="tree-select-filter-demo"></app-code>
`
})
export class FilterDoc {
nodes!: any[];
selectedNodes: any;
constructor(private nodeService: NodeService) {
this.nodeService.getFiles().then((files) => (this.nodes = files));
}
code: Code = {
basic: `<p-treeSelect
class="md:w-20rem w-full"
containerStyleClass="w-full"
[(ngModel)]="selectedNodes"
[options]="nodes"
placeholder="Select Item"
[filter]="true"
[filterInputAutoFocus]="true" />`,
html: `<div class="card flex justify-content-center">
<p-treeSelect
class="md:w-20rem w-full"
containerStyleClass="w-full"
[(ngModel)]="selectedNodes"
[options]="nodes"
placeholder="Select Item"
[filter]="true"
[filterInputAutoFocus]="true" />
</div>`,
typescript: `import { Component } from '@angular/core';
import { NodeService } from '@service/nodeservice';
import { FormsModule } from '@angular/forms';
import { TreeSelectModule } from 'primeng/treeselect';
@Component({
selector: 'tree-select-filter-demo',
templateUrl: './tree-select-filter-demo.html',
standalone: true,
imports: [FormsModule, TreeSelectModule],
providers: [NodeService]
})
export class TreeSelectFilterDemo {
nodes!: any[];
selectedNodes: any;
constructor(private nodeService: NodeService) {
this.nodeService.getFiles().then((files) => (this.nodes = files));
}
}`,
service: ['NodeService'],
data: `
/* NodeService */
{
key: '0',
label: 'Documents',
data: 'Documents Folder',
icon: 'pi pi-fw pi-inbox',
children: [
{
key: '0-0',
label: 'Work',
data: 'Work Folder',
icon: 'pi pi-fw pi-cog',
children: [
{ key: '0-0-0', label: 'Expenses.doc', icon: 'pi pi-fw pi-file', data: 'Expenses Document' },
{ key: '0-0-1', label: 'Resume.doc', icon: 'pi pi-fw pi-file', data: 'Resume Document' }
]
},
{
key: '0-1',
label: 'Home',
data: 'Home Folder',
icon: 'pi pi-fw pi-home',
children: [{ key: '0-1-0', label: 'Invoices.txt', icon: 'pi pi-fw pi-file', data: 'Invoices for this month' }]
}
]
},
...`
};
}
```
|
Susan Hopkins CBE is an Irish epidemiologist and civil servant working in the UK. She is honorary clinical senior lecturer in the Department of Medicine at Imperial College London, and Chief Medical Advisor for the UK Health Security Agency (UKHSA).
Career
Hopkins studied medicine at Trinity College Dublin and trained in infectious diseases, microbiology and epidemiology in Ireland, France and the UK. In 2006 she was appointed a consultant in infectious diseases and microbiology at the Royal Free Hospital. She became Clinical Director of Infection Services at the Royal Free London NHS Foundation Trust, and Deputy Director of the National Infection Service at Public Health England.
In 2018 she was called as a witness by the Health and Social Care Committee on antimicrobial resistance.
In January 2020 Hopkins was appointed Incident Director within Public Health England's COVID-19 incident response. In August 2021 she was appointed Interim Chief Medical Advisor at NHS Test and Trace and the Strategic Response Director for COVID-19 at Public Health England.
In November 2021 Hopkins raised concerns about the new B.1.1.529 variant, later named the omicron variant, of Covid-19. In December 2021 she warned that further restrictions may be needed to tackle an "inevitable" and "big wave of infections".
Awards
In December 2021 Hopkins was awarded the Presidential Distinguished Service Award by Michael D. Higgins.
In May 2022, she was awarded as Honorary Commander of the Order of the British Empire (CBE), for services to Public Health.
References
Year of birth missing (living people)
Living people
Irish epidemiologists
21st-century Irish medical doctors
Irish women medical doctors
Physicians of the Royal Free Hospital
Academics of Imperial College London
Public Health England
Honorary Commanders of the Order of the British Empire
Women epidemiologists
Place of birth missing (living people)
21st-century Irish scientists
21st-century Irish women medical doctors
|
The Iguape-Cananéia-Paranaguá estuary lagoon complex () is a stretch of interconnected coastal estuaries and lagoons that extends southwest from Iguape in the south of São Paulo past Cananéia, São Paulo to Paranaguá, Paraná.
It includes the Mar Pequeno in São Paulo, between Ilha Comprida and the mainland, and Paranaguá Bay in Paraná.
Location
The Iguape-Cananéia-Paranaguá estuary lagoon complex lies between (Barra do Una, SP) and (Morretes, PR) along the southeast São Paulo coast and the north Paraná coast.
The complex covers an area of .
The region is within the Vale do Ribeira, the poorest part of São Paulo.
The population grew by 27.18% from 1960 to 1980, but fell by 2.17% between 1980 and 1989.
As of 1994 the human population was 153,164 inhabitants.
Altitudes range from .
To the north the complex is bordered by the Juréia Massif and the Serra da Canavieira.
In the south, Paranaguá Bay extends about inland, and has depths up to .
The Paranaguá Bay is an estuarine system rather than an estuary, connecting to the sea through three tidal channels and interconnected with the Iguape-Cananéia Bay system to the north.
Tidal amplitude is about .
Environment
The system includes many islands, barrier islands and river deltas, and is the most important ecosystem of the south coast of Brazil.
Mean annual temperatures are above .
Annual rainfall is over .
The greatest rainfall is in the summer, from December to February.
Vegetation includes Atlantic Forest and extensive mangroves, as well as beaches and coastal dunes.
The hillsides are covered by dense rainforest.
The coastal strip has pioneer formations of marine influence on the sand banks, and mangroves of arboreal fluviomarine influence.
The environment is well preserved and is home to rich and diverse fauna of birds, mammals fish, molluscs and crustaceans.
The complex is an important habitat for marine species.
Locally endangered species include great horned owl (Bubo virginianus), tufted capuchin (Sapajus apella), collared peccary (Pecari tajacu), white-lipped peccary (Tayassu pecari), crab-eating raccoon (Procyon cancrivorus) and South American tapir (Tapirus terrestris).
Conservation
Since 1980 the IUCN has considered the Iguape-Cananéia-Paranaguá estuary region to be one of high global importance for nature conservation.
The estuary-lagoon complex, and the Vale do Ribeira as a whole, have a coordinated approach to environmental management, with a number of conservation units of different types.
Some are within the Southeast Atlantic Forest World Heritage Site.
The main environmental threats come from inefficient handling of chemical products in the port of Paranaguá, tourism-related real estate speculation in the beach areas, dumping of toxic agricultural waste and heavy metals into the Ribeira de Iguape River, which flows into the estuary, and lack of adequate sewage infrastructure.
The coastal communities are interested in maintaining the environment on which they depend for a living.
They have been involved in regional conservation initiatives such as the planning and zoning process for the Cananéia-Iguape-Peruíbe Environmental Protection Area.
Some communities have claimed responsibility for managing natural resources or protected areas.
Implementation in 2002 of the Mandira Extractive Reserve, whose inhabitants are mainly involved in collecting mangrove oysters (Crassostrea brasiliana), was a positive example of sustainable development.
With recognition and help in marketing, the people of the reserve became proud of their environmental conservation work and the quality of their products, and are seen as leaders in the region.
Conservation units covering parts of the complex include the Guará Area of Relevant Ecological Interest, Chaúas Ecological Station, Ilha Comprida Environmental Protection Area, Mandira Extractive Reserve, Taquari Extractive Reserve, Lagamar de Cananéia State Park, Itapanhapima Sustainable Development Reserve, Ilha do Cardoso State Park, Ilha do Tumba Extractive Reserve, Superagui National Park, Ilha do Mel Ecological Station, Ilha do Mel State Park, Guaraqueçaba Ecological Station and Sebuí Private Natural Heritage Reserve.
Notes
Sources
Geography of São Paulo (state)
Geography of Paraná (state)
|
```java
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* The top-level package in Graal containing options, counters and timers.
*
* Graal is intended to be used with multiple JVM's so makes no use of or reference to classes for a
* specific JVM.
*/
package jdk.graal.compiler.phases;
```
|
```objective-c
//
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#import "DBGridOverlayColorScheme.h"
@interface DBGridOverlayColorScheme ()
@property (nonatomic, strong) UIColor *primaryColor;
@property (nonatomic, strong) UIColor *secondaryColor;
@end
@implementation DBGridOverlayColorScheme
#pragma mark - Initialization
- (instancetype)initWithPrimaryColor:(UIColor *)primaryColor secondaryColor:(UIColor *)secondaryColor {
self = [super init];
if (self) {
self.primaryColor = primaryColor;
self.secondaryColor = secondaryColor;
}
return self;
}
+ (instancetype)colorSchemeWithPrimaryColor:(UIColor *)primaryColor secondaryColor:(UIColor *)secondaryColor {
return [[self alloc] initWithPrimaryColor:primaryColor secondaryColor:secondaryColor];
}
@end
```
|
Linear B Ideograms is a Unicode block containing ideographic characters for writing Mycenaean Greek. Several Linear B ideographs double as syllabic letters, and are encoded in the Linear B Syllabary block.
Block
History
The following Unicode-related documents record the purpose and process of defining specific characters in the Linear B Ideograms block:
References
Unicode blocks
|
André Collin (27 July 1875 – 27 October 1966) was a French architect. He was Architecte en chef des Monuments historiques (1906-1944) and Inspecteur général des Monuments historiques (1938-1944) until his retirement in 1944.
In his work for Monuments Historiques, he was initially in charge of the areas of Doubs, La Haute-Saône, Landes, Gers and Basses-Pyrénées. From 1918 he was responsible for l’Oise and then Seine-Maritime from 1920. Collin's major restorations were for the Cathedral of Noyon (1919-39) and abbeys in Prémontré and Laon. His work was part of the architecture event in the art competition at the 1912 Summer Olympics. He is buried at the Perre Lachaise cemetery in Paris.
References
1875 births
1966 deaths
19th-century French architects
20th-century French architects
Olympic competitors in art competitions
Architects from Paris
|
```go
package memcache
type MemCache struct {
M map[string]interface{}
}
func (m *MemCache) Set(k string, val interface{}) {
m.M[k] = val
}
func (m *MemCache) Get(k string) interface{} {
return m.M[k]
}
```
|
Jesús María District may refer to:
Jesús María District, Lima, Peru
Jesús María District, San Mateo, in San Mateo (canton), Alajuela province, Costa Rica
See also
Jesús María (disambiguation)
|
Stark Raving Theatre was a theatre company in Portland, Oregon that operated from 1988 to 2006. Unlike most other theatres in the country, it was dedicated to premiering new works.
Starting up
The company was founded by playwrights Rod Harrel, Robin Suttles, and E.J. Westlake, who had met working for The New Rose Theatre. Concerned about the lack of venues for new works, the three writers decided to create a space where artists could experiment with existing material and to workshop new plays. Initially, Harrel was the artistic director, Suttles was the Technical Director, and Westlake was the managing director. The Board of Directors included artists such as Cathy J. Lewis, Joel Applegate, and David Williams. The name "Stark Raving" derived from the theatre's original plan to occupy a space on Stark Street; however, the first few seasons took place in the basement of the Bullring Restaurant (seating less than 50 people) on Northwest 27th Street. With an average ceiling height of only 6 feet 6 inches, the space certainly presented challenges for both designers and actors.
Season One, 1989
The theatre officially opened on March 11, 1989, with a benefit screening of Harrel's video work Jack, a retelling of the Jack the Ripper story. "Like some Jacobean drama ('Jack') seems to exist mostly for the thrill of the dirty deeds."
The first staged production in SRT's history was Westlake's semi-musical The Foofy, Open-Toed Shoe: a Not Necessarily Politically Correct, Lesbian, Feminist, Mystery Farce, featuring Allison Coe, Mackenzie Wren, Patty French, and Holly Bennett. The play opened on March 30 and Bob Hicks of The Oregonian remarked, "Westlake has fun blending the silly conventions of gumshoe drama with the dirt-between-the-toes political correctness of the radical gay community. Things may end abruptly, but it's a lightly amusing little trip."
The second production in the spring/summer of 1989 was Harrel's courtroom farce, Trial By Error. This was SRT's first bonifide hit with standing room only crowds and a week's extension on the original run. The Willamette Week's Bob Sitton wrote, "Proof that theatre can still be fun in an age of professionalization is found in Trial By Error, Rod Harrel's what-the-hell spoof...and it's refreshing to see new faces on stage along with some more familiar actors...".
Season Two, 1989-1990
Stark Raving opened its second season, with a full slate of productions, in October, 1989 with Harrel's production of Elmer Rice's The Adding Machine. Harrel was proud to receive the review headline: "Adding Machine rings up zero". Although hard on the show, the reviewer recognized SRT's attempt at doing something different. "(Elmer) Rice's tale seems to be a grand exercise in black social comedy, but little humor sneaks into director Rod Harrel's production...To be done justice, the play needs the talents of a more professional company. But the odds of a Storefront (Theatre), Portland Rep or Oregon Shakespeare Festival taking a chance on such financially risky material are - well, close to Zero...Which leaves it to little Stark Raving Theatre which at least took an honest stab."
Westlake's parody of absurdism From Here to Absurdity, and Suttle's innovative take on Titus Andronicus followed. The group was committed to a pay-what-you-can sliding scale, and asked for $0–$15 at the door, and $0–$500+ from subscribers/contributors. Stage readings began in September, 1989 and new plays were being submitted. This approach was noted in an article in the [Portland Area Theatre Alliance's] newsletter, TheatreSource. "Plays that deal with unusual subject matter, offbeat approaches or unique psychological insights are welcome, and staged readings of those kinds of new works will be performed during the season."
The three founders split up in early 1990 because of artistic differences, mostly revolving around how political the work of the theatre should be. Suttles went on to take a key role in Tygres Heart Shakespeare Company; Westlake remained as the managing director and recruited Rich Burroughs as the artistic director; Harrel remained active with SRT as an actor while continuing his work in video.
The remainder of the season featured Paul Bernstein's Cold Hands, a play seen through the eyes of a homeless man with schizophrenia featuring Rod Harrel and Michelle Maida, and Burning Conscience, a stage adaptation of the letters of Claude Eatherly, the pilot of the Straight Flush, directed by Norm Johnson.
Season Three, 1990-1991
The season was advertised as an "adventure" to support a "remarkable risk-taking group," and used a quote from the Marquis de Sade: "We believe that every situation is at the disposition of the novelist...only fools will be scandalized. True virtue was never frightened...by pictures of vice..." The season opened with two of Bertolt Brecht's Lehrstücke: The Measures Taken and The Exception and the Rule. Both were directed by Rich Burroughs with interested students from Reed College, currently studying Brecht and Epic Theatre. Melissa Marsland directed The Wallsby Argentine absurdist Griselda Gambaro, and Burroughs directed a New Historicist experiment called The Jew of Venice, a study of English Renaissance portrayals of Jewish characters.
Politicized by her travels to Nicaragua during the Revolutionary regime, Westlake staged a tribute to the Nicaraguan people, Mothers of Heroes, featuring Harrel as White Guilt, Allison Coe as the confused autobiographical character Sam, and Brenna Sage as Hannah, Sam's partner, and multiple other characters.. Burroughs recruited Dave Demke to direct The Butcher Papers by Dan Duling, the beginning of SRT's long relationship with Demke and Myra Donnelley. The season closed with Burroughs' staging of Georg Büchner's Woyzeck. This marked the first time that The Oregonian featured the theatre in a 'preview' article.
As a pay-what-you-can theatre, SRT rarely made enough money to pay its expenses. Artists were paid under a share system where a certain percentage of the box office was divided equally among the artists; they rarely made more than $20 a show, and never more than $80. The Bullring also relied on a percentage of the box office as rent and the restaurant management was frequently disappointed with the trickle of cash that came in. The Fire Marshall noted that serious upgrades were needed to keep the theatre open, and the Bullring moved to evict the theatre. Westlake convinced the restaurant owners to keep the theatre for one more season and to pitch in for the cost of the fire code upgrades.
Season Four, 1991-1992
This was Stark Raving's Brave New Works season, including Aubrey Hampton's one-man play Mixed Blood, based on Cantwell's book about the AIDS conspiracy, starring Steven Clark Pachosa. With Hampton and Donnelly's help, Burroughs took the play to off-off-Broadway. Burroughs stepped down as artistic director, leaving Westlake to manage the remainder of the season before passing the company along to Demke and Donnelley. The rest of the season featured the 100th Monkey Collective's staging of The Conduct of Life by María Irene Fornés, Donnelley's play Angelmaker about the controversial figure Ruth Barnett, and Llew Rhoe's staging of Westlake's A.E.: The Disappearance and Death of Amelia Earhart, featuring Rod Harrel and Tammie Andreas, which later went on to win the Oregon Book Award. that year. SRT was also home to the premier of Steve Patterson's play Bombardment that summer. The final performance of the season was Westlake's staging of Split Britches' Little Women: the Tragedy. Originally written for the trio of Lois Weaver, Peggy Shaw, and Deb Margolin, Little Women pushed the limits of SRT's space and challenged its regular audience. This was the last time Westlake and Harrel worked together at SRT (he designed the sound). By the end of the run, it played to packed houses who were disappointed at Donnelley's announcement that the theatre would be closing if it could not find a new space for the next season.
By this time, SRT garnered a reputation for edgy and provocative new work. Cate Garrison of Willamette Week noted: "Stark Raving Theatre is not afraid to explore the painful choices society frequently has to make" and "A highly individual performance space that offers the kin of inventive, inexpensive theatre that will...make you think a little." Rebecca Morris of The Oregonian declared: "Stark Raving Theatre...chooses plays other theatres rarely touch." Bob Hicks had dubbed SRT as "Brash, little Stark Raving Theatre."
Westlake left SRT for graduate school and Donnelley and Demke moved the company to a new venue (Back Door Stage) on Hawthorne Blvd. in Southeast Portland.
Later seasons
From the fifth season (1992-1993) until the 12th season (1999-2000), Donnelley and Demke ran the theatre from the Back Door Stage (on Hawthorne Blvd.) and then to the TheatreTheatre! space on Belmont St. and also the old New Rose Theatre space at 904 SE Main in downtown Portland. They also achieved a level of funding SRT had not been accustomed to earlier and were able to expand the theatre's original vision of producing new works.
The theatre passed again to others' hands after Donnelley and Demke left. After moving back to Northwest Portland Stark Raving Theatre abruptly closed in 2006.
Selected awards
Oregon Book Award, 1992, The Disappearance and Death of Amelia Earhart by E.J. Westlake; Drammy Award, 2001, Actress: Darcy Lynn, "Money Shot'; Drammy Award, 2003, Acting Ensemble, "ElectroPuss"
References
1988 establishments in Oregon
Culture of Portland, Oregon
Theatre companies in Oregon
2006 disestablishments in Oregon
|
Jaidev is a 1998 Indian Kannada language action drama film directed by H. Vasu who also wrote the screenplay for a story by M. D. Hasham. It film has musical score by Rajesh Ramanath. The film stars Jaggesh in the title role alongside an ensemble cast which includes Charulatha, Srinath, Doddanna, Ashok, Sumithra and Gurudatt. The film was produced by Sa Ra Govindu in the banner of Thanu Chithra.
The film narrates the story of two brothers, Dhanpal and Jaipal, who have supreme authority over their dead brother-in-law's wealth. However, when a stage comes that they are unable to keep their authority due to their brother-in-law's will which states that his son will be the next heir, they hire Jaidev, a young good doer to play that role. He is hoodwinked into believing that they are doing it for their sister. What happens later forms the crux of the story.
Cast
Jaggesh ... Jaidev"Devu"
Charulatha ... Pavithra"Pavi"
Srinath ... Lawyer Shiva
Doddanna ... Dhanpal
Sumithra ... Jaidev's mother
Gurudatt ... Jaipal
Ashok
Krishne Gowda
Harish Roy
Pramila Joshai
Honnavalli Krishna
Soundtrack
The soundtrack album comprises 6 songs composed by Rajesh Ramanath.
Others
The film was cleared with a U Certificate from the Censor Board after deletion of a few dialogues.
Sri Ganesh Video purchased the video rights of the film.
References
External links
Jaidev at Gaana
Jaidev at Saavn
Jaidev at iTunes
1998 films
1990s Kannada-language films
|
```html
<!--
@license
This code may only be used under the BSD style license found at path_to_url
The complete set of authors may be found at path_to_url
The complete set of contributors may be found at path_to_url
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at path_to_url
-->
<script src="../web-animations-js/web-animations-next-lite.min.js"></script>
```
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.