Quick Start Tutorials (VBL)
Quick Start Tutorials (VBL)
Getting Started
Introduction Welcome to the ASP.NET QuickStart Tutorial
What is ASP.NET?
Language Support The ASP.NET QuickStart is a series of ASP.NET samples and supporting commentary designed to quickly acquaint
developers with the syntax, architecture, and power of the ASP.NET Web programming framework. The QuickStart
samples are designed to be short, easy-to-understand illustrations of ASP.NET features. By the time you have
ASP.NET Web Forms completed the QuickStart tutorial, you will be familiar with:
Introducing Web Forms
Working with Server Controls ● ASP.NET Syntax. While some of the ASP.NET syntax elements will be familiar to veteran ASP developers,
Applying Styles to Controls several are unique to the new framework. The QuickStart samples cover each element in detail.
Server Control Form Validation ● ASP.NET Architecture and Features. The QuickStart introduces the features of ASP.NET that enable
developers to build interactive, world-class applications with much less time and effort than ever before.
Web Forms User Controls ● Best Practices. The QuickStart samples demonstrate the best ways to exercise the power of ASP.NET
Data Binding Server Controls while avoiding potential pitfalls along the way.
Server-Side Data Access
Data Access and Customization What Level of Expertise Is Assumed in the QuickStart?
If you have never developed Web pages before, the QuickStart is not for you. You should be fluent in HTML and
Working with Business Objects
general Web development terminology. You do not need previous ASP experience, but you should be familiar with
Authoring Custom Controls the concepts behind interactive Web pages, including forms, scripts, and data access.
Web Forms Controls Reference
Web Forms Syntax Reference Working with the QuickStart Samples
The QuickStart samples are best experienced in the order in which they are presented. Each sample builds on
concepts discussed in the preceding sample. The sequence begins with a simple form submittal and builds up to
ASP.NET Web Services integrated application scenarios.
Introducing Web Services
Writing a Simple Web Service
Web Service Type Marshalling
Using Data in Web Services
Using Objects and Intrinsics
The WebService Behavior
HTML Pattern Matching
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Data Binding Server Controls ● World-Class Tool Support. The ASP.NET framework is
Server-Side Data Access complemented by a rich toolbox and designer in the Visual Studio
integrated development environment. WYSIWYG editing, drag-and-
Data Access and Customization
drop server controls, and automatic deployment are just a few of
Working with Business Objects the features this powerful tool provides.
Authoring Custom Controls
● Power and Flexibility. Because ASP.NET is based on the
Web Forms Controls Reference common language runtime, the power and flexibility of that entire
Web Forms Syntax Reference platform is available to Web application developers. The .NET
Framework class library, Messaging, and Data Access solutions are
all seamlessly accessible from the Web. ASP.NET is also language-
ASP.NET Web Services independent, so you can choose the language that best applies to
Introducing Web Services your application or partition your application across many
languages. Further, common language runtime interoperability
Writing a Simple Web Service
guarantees that your existing investment in COM-based
Web Service Type Marshalling development is preserved when migrating to ASP.NET.
Using Data in Web Services
● Simplicity. ASP.NET makes it easy to perform common tasks,
Using Objects and Intrinsics from simple form submission and client authentication to
The WebService Behavior deployment and site configuration. For example, the ASP.NET
HTML Pattern Matching page framework allows you to build user interfaces that cleanly
separate application logic from presentation code and to handle
events in a simple, Visual Basic - like forms processing model.
ASP.NET Web Applications Additionally, the common language runtime simplifies
development, with managed code services such as automatic
Application Overview
reference counting and garbage collection.
Using the Global.asax File
Managing Application State ● Manageability. ASP.NET employs a text-based, hierarchical
configuration system, which simplifies applying settings to your
HttpHandlers and Factories server environment and Web applications. Because configuration
information is stored as plain text, new settings may be applied
without the aid of local administration tools. This "zero local
Cache Services administration" philosophy extends to deploying ASP.NET
Caching Overview applications as well. An ASP.NET application is deployed to a
Page Output Caching server simply by copying the necessary files to the server. No
server restart is required, even to deploy or replace running
Page Fragment Caching
compiled code.
Page Data Caching
● Scalability and Availability. ASP.NET has been designed with
scalability in mind, with features specifically tailored to improve
Configuration performance in clustered and multiprocessor environments.
Configuration Overview Further, processes are closely monitored and managed by the
ASP.NET runtime, so that if one misbehaves (leaks, deadlocks), a
Configuration File Format
new process can be created in its place, which helps keep your
Retrieving Configuration application constantly available to handle requests.
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Services Intended as a logical evolution of ASP (ASP.NET provides syntax
Introducing Web Services compatibility with existing pages), the ASP.NET Web Forms framework has
Writing a Simple Web Service been specifically designed to address a number of key deficiencies in the
previous model. In particular, it provides:
Web Service Type Marshalling
Using Data in Web Services
● The ability to create and use reusable UI controls that can
Using Objects and Intrinsics
encapsulate common functionality and thus reduce the amount of
The WebService Behavior code that a page developer has to write.
HTML Pattern Matching ● The ability for developers to cleanly structure their page logic in
an orderly fashion (not "spaghetti code").
● The ability for development tools to provide strong WYSIWYG
ASP.NET Web Applications design support for pages (existing ASP code is opaque to tools).
Application Overview
Using the Global.asax File This section of the QuickStart provides a high-level code walkthrough of
some key ASP.NET Web Forms features. Subsequent sections of the
Managing Application State
QuickStart drill down into more specific details.
HttpHandlers and Factories
Writing Your First Web Forms Page
Cache Services
Caching Overview ASP.NET Web Forms pages are text files with an .aspx file name extension.
They can be deployed throughout an IIS virtual root directory tree. When a
Page Output Caching browser client requests .aspx resources, the ASP.NET runtime parses and
Page Fragment Caching compiles the target file into a .NET Framework class. This class can then be
Page Data Caching used to dynamically process incoming requests. (Note that the .aspx file is
compiled only the first time it is accessed; the compiled type instance is
then reused across multiple requests).
Configuration
Configuration Overview An ASP.NET page can be created simply by taking an existing HTML file
Configuration File Format and changing its file name extension to .aspx (no modification of code is
required). For example, the following sample demonstrates a simple HTML
Retrieving Configuration
page that collects a user's name and category preference and then
performs a form postback to the originating page when a button is clicked:
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication VB Intro1.aspx
Forms-based Authentication
Authorizing Users and Roles [Run Sample] | [View Source]
User Account Impersonation
Security and WebServices Important: Note that nothing happens yet when you click the Lookup
button. This is because the .aspx file contains only static HTML (no
dynamic content). Thus, the same HTML is sent back to the client on each
Localization trip to the page, which results in a loss of the contents of the form fields
Internationalization Overview (the text box and drop-down list) between requests.
Setting Culture and Encoding
Using ASP <% %> Render Blocks
Localizing ASP.NET Applications
Working with Resource Files
ASP.NET provides syntax compatibility with existing ASP pages. This
includes support for <% %> code render blocks that can be intermixed
Tracing with HTML content within an .aspx file. These code blocks execute in a top-
down manner at page render time.
Tracing Overview
Trace Logging to Page Output
The below example demonstrates how <% %> render blocks can be used
Application-level Trace Logging to loop over an HTML block (increasing the font size each time):
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips VB Intro2.aspx
Measuring Performance
[Run Sample] | [View Source]
ASP to ASP.NET Migration
Migration Overview Important: Unlike with ASP, the code used within the above <% %>
Syntax and Semantics blocks is actually compiled--not interpreted using a script engine. This
results in improved runtime execution performance.
Language Compatibility
COM Interoperability
ASP.NET page developers can utilize <% %> code blocks to dynamically
Transactions
modify HTML output much as they can today with ASP. For example, the
following sample demonstrates how <% %> code blocks can be used to
interpret results posted back from a client.
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Important: While <% %> code blocks provide a powerful way to custom
manipulate the text output returned from an ASP.NET page, they do not
provide a clean HTML programming model. As the sample above illustrates,
developers using only <% %> code blocks must custom manage page
state between round trips and custom interpret posted values.
In addition to (or instead of) using <% %> code blocks to program
dynamic content, ASP.NET page developers can use ASP.NET server
controls to program Web pages. Server controls are declared within an
.aspx file using custom tags or intrinsic HTML tags that contain a
runat="server" attribute value. Intrinsic HTML tags are handled by one
of the controls in the System.Web.UI.HtmlControls namespace. Any
tag that doesn't explicitly map to one of the controls is assigned the type of
System.Web.UI.HtmlControls.HtmlGenericControl.
VB Intro4.aspx
VB Intro5.aspx
VB Intro6.aspx
ASP.NET ships with 45 built-in server controls that can be used out of the
box (for details, see Web Forms Controls Reference). In addition to using
the built-in ASP.NET controls, developers also can use controls developed
by third-party vendors.
VB Intro7.aspx
generates standard HTML 3.2. This HTML 3.2 does require round trips back
to the server to handle client-side user interactions.
ASP.NET ships with a built-in set of data grid and list controls. These can
be used to provide custom UI driven from queries against a database or
other data source. For example, the following sample demonstrates how a
<asp:datagrid runat=server> control can be used to databind book
information collected using a SQL database query.
VB Intro8.aspx
VB Intro9.aspx
VB Intro10.aspx
Note that the control, data model, and page user in this example are
exactly the same as those in the previous sample. The only difference is
that, here, alternative templates are declaratively supplied to the code.
VB Intro11.aspx
Note that the validation controls have both uplevel and downlevel client
support. Uplevel browsers perform validation on the client (using JavaScript
and DHTML) and on the server. Downlevel browsers perform the validation
only on the server. The programming model for the two scenarios is
identical.
Note that ASP.NET page developers can optionally check the Page.IsValid
property at run time to determine whether all validation server controls on
a page are currently valid. This provides a simple way to determine
whether or not to proceed with business logic. For example, the following
sample performs a Page.IsValid check before executing a database
lookup on the specified category.
VB Intro12.aspx
VB Intro13.aspx
Section Summary
Configuration
Configuration Overview VB Controls2.aspx
Configuration File Format
Retrieving Configuration [Run Sample] | [View Source]
Handling Errors which can be handled by page developers. A page developer may
accomplish this by declaratively wiring an event to a control (where the
attribute name of an event wireup indicates the event name and the
Security attribute value indicates the name of a method to call). For example, the
Security Overview following code example demonstrates how to wire an OnClick event to a
button control.
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
VB Controls3.aspx
Localization
Internationalization Overview
[Run Sample] | [View Source]
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files Handling Multiple Control Action Events
Event handlers provide a clean way for page developers to structure logic
Tracing within an ASP.NET page. For example, the following sample demonstrates
Tracing Overview how to wire and handle four button events on a single page.
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance VB Controls4.aspx
Performance Overview
Performance Tuning Tips [Run Sample] | [View Source]
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
VB Controls5.aspx
Get URL for this page
[Run Sample] | [View Source]
Not all page navigation scenarios are initiated through hyperlinks on the
client. Client-side page redirects or navigations can also be initiated from
the server by an ASP.NET page developer by calling the
Page.Navigate(url) method. This is typically done when server-side
validation is required on some client input before the navigation actually
takes place.
VB Controls6.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
VB Style2.aspx
Configuration
Configuration Overview [Run Sample] | [View Source]
Configuration File Format
Retrieving Configuration When an ASP.NET page is parsed, the style information is populated into a Style property (of type
CssStyleCollection) on the System.Web.UI.HtmlControls.HtmlControl class. This property is
essentially a dictionary that exposes the control's styles as a string-indexed collection of values for each
Deployment style-attribute key. For example, you could use the following code to set and subsequently retrieve the
Deploying Applications width style attribute on an HtmlInputText server control.
Using the Process Model
Handling Errors
<script language="VB" runat="server" >
This next sample shows how you can programmatically manipulate the style for an HTML server control
Localization using this Style collection property.
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
VB Style3.aspx
Trace Logging to Page Output
Application-level Trace Logging [Run Sample] | [View Source]
Debugging
Applying Styles to Web Server Controls
The SDK Debugger
Web server controls provide an additional level of support for styles by adding several strongly typed
Performance properties for commonly used style settings, such as background and foreground color, font name and size,
Performance Overview width, height, and so on. These style properties represent a subset of the style behaviors available in HTML
and are represented as "flat" properties exposed directly on the
Performance Tuning Tips
System.Web.UI.WebControls.WebControl base class. The advantage of using these properties is that
Measuring Performance they provide compile-time type checking and statement completion in development tools such as Microsoft
Visual Studio.NET.
Sample Applications
A Personalized Portal
An E-Commerce Storefront VB Style4.aspx
A Class Browser Application
IBuySpy.com [Run Sample] | [View Source]
Get URL for this page The System.Web.UI.WebControls namespace includes a Style base class that encapsulates common
style attributes (additional style classes, such as TableStyle and TableItemStyle, inherit from this
common base class). Many Web server controls expose properties of this type for specifying the style of
individual rendering elements of the control. For example, the WebCalendar exposes many such style
properties: DayStyle, WeekendDayStyle, TodayDayStyle, SelectedDayStyle,
OtherMonthDayStyle, and NextPrevStyle. You can set individual properties of these styles using the
subproperty syntax PropertyName-SubPropertyName, as the following sample demonstrates.
VB Style5.aspx
A slightly different syntax allows each Style property to be declared as a child element nested within Web
server control tags.
The following sample shows alternative syntax but is functionally equivalent to the preceding one.
VB Style6.aspx
As with HTML server controls, you can apply styles to Web server controls using a CSS class definition. The
WebControl base class exposes a String property named CssClass for setting the style class:
VB Style7.aspx
If an attribute is set on a server control that does not correspond to any strongly typed property on the
control, the attribute and value are populated in the Attributes collection of the control. By default, server
controls will render these attributes unmodified in the HTML returned to the requesting browser client. This
means that the style and class attributes can be set on Web server controls directly instead of using the
strongly typed properties. While this requires some understanding of the actual rendering of the control, it
can be a flexible way to apply styles as well. It is especially useful for the standard form input controls, as
illustrated in the following sample.
VB Style8.aspx
Web server control styles can also be set programmatically, using the ApplyStyle method of the base
WebControl class, as in the following code.
MyLogin.ApplyStyle (MyStyle)
MyPassword.ApplyStyle (MyStyle)
MySubmit.ApplyStyle (MyStyle)
End Sub
</script>
VB
VB Style9.aspx
Section Summary
1. ASP.NET's HTML server control and Web server control families provide first-class support for CSS
styles.
2. Styles may be applied by setting either the style or the class attributes of a control. These settings
are accessible programmatically through the control's Attributes collection. In the case of HTML
server controls, individual values for style-attribute keys can be retrieved from the control's Style
collection.
3. Most commonly used style settings are exposed on Web server controls as strongly typed
properties of the control itself.
4. The System.Web.UI.WebControls namespace includes a Style base class that encapsulates
common style attributes. Many Web server controls expose properties of this type to control
individual rendering elements.
5. Styles may be set programmatically on Web server controls using the ApplyStyle method of the
WebControl base class.
Validation controls are added to a Web Forms page like other server controls. There are controls for specific types of validation, such as range checking or
ASP.NET Web Services pattern matching, plus a RequiredFieldValidator that ensures that a user does not skip an entry field. You can attach more than one validation control to
Introducing Web Services an input control. For example, you might specify both that an entry is required and that it must contain a specific range of values.
Writing a Simple Web Service
Web Service Type Marshalling Validation controls work with a limited subset of HTML and Web server controls. For each control, a specific property contains the value to be validated. The
Using Data in Web Services following table lists the input controls that may be validated.
Using Objects and Intrinsics
The WebService Behavior Control Validation Property
HTML Pattern Matching
HtmlInputText Value
HtmlTextArea Value
ASP.NET Web Applications
Application Overview HtmlSelect Value
The simplest form of validation is a required field. If the user enters any value in a field, it is valid. If all of the fields in the page are valid, the page is valid.
http://samples.gotdotnet.com/quickstart/aspplus/doc/webvalidation.aspx (1 of 8) [4/02/2002 8:50:30 AM]
Microsoft ASP.NET QuickStarts Tutorial
Configuration The following example illustrates this using the RequiredFieldValidator.
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model VB Validator1.aspx
Handling Errors
[Run Sample] | [View Source]
Security
Security Overview There are also validation controls for specific types of validation, such as range checking or pattern matching. The following table lists the validation controls.
Authentication & Authorization
Windows-based Authentication Control Name Description
Forms-based Authentication
RequiredFieldValidator Ensures that the user does not skip an entry.
Authorizing Users and Roles
CompareValidator Compares a user's entry with a constant value or a property value of
User Account Impersonation
another control using a comparison operator (less than, equal to,
Security and WebServices greater than, and so on).
RangeValidator Checks that a user's entry is between specified lower and upper
Localization boundaries. You can check ranges within pairs of numbers, alphabetic
Internationalization Overview characters, or dates. Boundaries can be expressed as constants.
Setting Culture and Encoding RegularExpressionValidator Checks that the entry matches a pattern defined by a regular
Localizing ASP.NET Applications expression. This type of validation allows you to check for predictable
sequences of characters, such as those in social security numbers, e-
Working with Resource Files
mail addresses, telephone numbers, postal codes, and so on.
CustomValidator Checks the user's entry using validation logic that you code yourself.
Tracing This type of validation allows you to check for values derived at run
Tracing Overview time.
Trace Logging to Page Output ValidationSummary Displays the validation errors in summary form for all of the validators
Application-level Trace Logging on a page.
The validation controls always perform validation checking in server code. However, if the user is working with a browser that supports DHTML, the validation
Performance controls can also perform validation using client script. With client-side validation, any errors are detected on the client when the form is submitted to the
Performance Overview server. If any of the validators are found to be in error, the submission of the form to the server is cancelled and the validator's Text property is displayed.
This permits the user to correct the input before submitting the form to the server. Field values are revalidated as soon as the field containing the error loses
Performance Tuning Tips focus, thus providing the user with a rich, interactive validation experience.
Measuring Performance
Note that the Web Forms page framework always performs validation on the server, even if the validation has already been performed on the client. This
ASP to ASP.NET Migration helps prevent users from being able to bypass validation by impersonating another user or a preapproved transaction.
Migration Overview
http://samples.gotdotnet.com/quickstart/aspplus/doc/webvalidation.aspx (2 of 8) [4/02/2002 8:50:30 AM]
Microsoft ASP.NET QuickStarts Tutorial
Syntax and Semantics Client-side validation is enabled by default. If the client is capable, uplevel validation will be performed automatically. To disable client-side validation, set the
page's ClientTarget property to "Downlevel" ("Uplevel" forces client-side validation).
Language Compatibility
COM Interoperability
Transactions
Sample Applications
A Personalized Portal
An E-Commerce Storefront
VB Validator2.aspx
A Class Browser Application
IBuySpy.com
[Run Sample] | [View Source]
When the user's input is processed (for example, when the form is submitted), the Web Forms page framework passes the user's entry to the associated
validation control or controls. The validation controls test the user's input and set a property to indicate whether the entry passed the validation test. After all
validation controls have been processed, the IsValid property on the page is set; if any of the controls shows that a validation check failed, the entire page is
set to invalid.
If a validation control is in error, an error message may be displayed in the page by that validation control or in a ValidationSummary control elsewhere on
the page. The ValidationSummary control is displayed when the IsValid property of the page is false. It polls each of the validation controls on the page
and aggregates the text messages exposed by each. The following example illustrates displaying errors with a ValidationSummary control.
VB Validator3.aspx
The CompareValidator server control compares the values of two controls. CompareValidator uses three key properties to perform its validation.
ControlToValidate and ControlToCompare contain the values to compare. Operator defines the type of comparison to perform--for example, Equal or
Not Equal. CompareValidator performs the validation by evaluating these properties as an expression, as follows:
VB Validator4.aspx
The RangeValidator server control tests whether an input value falls within a given range.
RangeValidator uses three key properties to perform its validation. ControlToValidate contains the value
to validate. MinimumValue and MaximumValue define the minimum and maximum values of the valid
range.
VB Validator5.aspx
The RegularExpressionValidator server control checks that the entry matches a pattern defined by a
regular expression. This type of validation allows you to check for predictable sequences of characters,
such as those in social security numbers, e-mail addresses, telephone numbers, postal codes, and so on.
RegularExpressionValidator uses two key properties to perform its validation. ControlToValidate contains
the value to validate. ValidationExpression contains the regular expression to match.
VB Validator6.aspx
VB Validator7.aspx
The CustomValidator server control calls a user-defined function to perform validations that the standard
validators can't handle. The custom function can execute on the server or in client-side script, such as JScript or
VBScript.
For client-side custom validation, the name of the custom function must be identified in the ClientValidationFunction
property. The custom function must have the form
For server-side custom validation, place your custom validation in the validator's OnServerValidate
delegate.
VB Validator8.aspx
This sample shows a typical registration form, using the variations of validation controls discussed in this topic.
VB Validator9.aspx
1. Validator controls can be used to validate input on any Web Forms page.
2. More than one control can be used on a given input field.
3. Client-side validation may be used in addition to server validation to improve form usability.
4. The CustomValidator control lets the user define custom validation criteria.
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching VB Pagelet1.aspx
Page Data Caching
[Run Sample] | [View Source]
Configuration
Configuration Overview Exposing User Control Properties
Configuration File Format
Retrieving Configuration When a Web Forms page is treated as a control, the public fields and methods of that Web
Form are promoted to public properties (that is, tag attributes) and methods of the control as
well. The following example shows an extension of the previous user control example that
Deployment adds two public String fields. Notice that these fields can be set either declaratively or
Deploying Applications programmatically in the containing page.
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
VB Pagelet2.aspx
Localization
Internationalization Overview [Run Sample] | [View Source]
Setting Culture and Encoding
Localizing ASP.NET Applications In addition to promoting public fields to control properties, the property syntax may be used.
Working with Resource Files Property syntax has the advantage of being able to execute code when properties are set or
retrieved. The following example demonstrates an Address user control that wraps the text
properties of TextBox controls within it. The benefit of doing this is that the control inherits
Tracing the automatic state management of the TextBox control for free.
Tracing Overview
Trace Logging to Page Output Notice that there are two Address user controls on the containing Web Forms page that set
the Caption property to "Billing Address" and "Shipping Address", respectively. The real
Application-level Trace Logging
power of user controls is in this type of reusability.
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips VB Pagelet3.aspx
Measuring Performance
[Run Sample] | [View Source]
ASP to ASP.NET Migration
Migration Overview Another useful user control is a Login control for collecting user names and passwords.
Syntax and Semantics
Language Compatibility
COM Interoperability
Transactions
Sample Applications
A Personalized Portal
VB Pagelet4.aspx
An E-Commerce Storefront
A Class Browser Application [Run Sample] | [View Source]
IBuySpy.com
In this example, form validation controls are added to the Login user control.
Get URL for this page
VB Pagelet5.aspx
User controls participate in the complete execution lifecycle of the request, much the way
ordinary server controls do. This means that a user control can handle its own events,
encapsulating some of the page logic from the containing Web Forms page. The following
example demonstrates a product-listing user control that internally handles its own postbacks.
Note that the user control itself has no wrapping <form runat="server"> control. Because
only one form control may be present on a page (ASP.NET does not allow nested server
forms), it is left to the containing Web Forms page to define this.
VB Pagelet6.aspx
Just as ordinary server controls can be created programmatically, so user controls can be. The
page's LoadControl method is used to load the user control, passing the virtual path to the
user control's source file:
VB
The type of the user control is determined by a ClassName attribute on the Control
directive. For example, a user control saved with the file name "pagelet7.ascx" is assigned the
strong type "Pagelet7CS" as follows:
VB Pagelet7.aspx
Important The strong type for a user control is available to the containing Web Forms page
only if a Register directive is included for the user control (even if there are no user control
tags actually declared).
Section Summary
1. User controls allow developers to easily define custom controls using the same
programming techniques as for writing Web Forms pages.
2. As a matter of convention, an .ascx file name extension is used to indicate such
controls. This ensures that a user control file cannot be executed as a standalone
Web Forms page.
3. User controls are included into another Web Forms page using a Register directive,
ASP.NET Web Applications DataBind is a method of the Page and all server controls. When you call DataBind on a
Application Overview parent control, it cascades to all of the children of the control. So, for example,
DataList1.DataBind() invokes the DataBind method on each of the controls in the
Using the Global.asax File
DataList templates. Calling DataBind on the Page -- Page.DataBind() or simply
Managing Application State DataBind() -- causes all data binding expressions on the page to be evaluated. DataBind is
HttpHandlers and Factories commonly called from the Page_Load event, as shown in the following example.
Cache Services
Protected Sub Page_Load(Src As Object, E As EventArgs)
Caching Overview DataBind()
Page Output Caching End Sub
Page Fragment Caching
Page Data Caching VB
Configuration You can use a binding expression almost anywhere in the declarative section of an .aspx page,
provided it evaluates to the expected data type at run time. The simple property, expression,
Configuration Overview
and method examples above display text to the user when evaluated. In these cases, the data
Configuration File Format binding expression must evaluate to a value of type String. In the collection example, the data
Retrieving Configuration binding expression evaluates to a value of valid type for the DataSource property of ListBox.
You might find it necessary to coerce the type of value in your binding expression to produce
the desired result. For example, if count is an integer:
Deployment
Deploying Applications Number of Records: <%# count.ToString() %>
Using the Process Model
Handling Errors
Binding to Simple Properties
Security The ASP.NET data binding syntax supports binding to public variables, properties of the Page,
Security Overview and properties of other controls on the page.
Authentication & Authorization
Windows-based Authentication The following example illustrates binding to a public variable and simple property on the page.
Note that these values are initialized before DataBind() is called.
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding VB DataBind1.aspx
Debugging
The SDK Debugger
VB DataBind2.aspx
List server controls like DataGrid, ListBox and HTMLSelect use a collection as a data source.
ASP to ASP.NET Migration
The following examples illustrate binding to usual common language runtime collection types.
Migration Overview These controls can bind only to collections that support the IEnumerable, ICollection, or
Syntax and Semantics IListSource interface. Most commonly, you'll bind to ArrayList, Hashtable, DataView and
Language Compatibility DataReader.
COM Interoperability
Transactions The following example illustrates binding to an ArrayList.
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
VB DataBind3.aspx
The following example illustrates binding to a DataView. Note that the DataView class is
defined in the System.Data namespace.
VB DataBind4.aspx
VB DataBind5.aspx
Often, you'll want to manipulate data before binding to your page or a control. The following
example illustrates binding to an expression and the return value of a method.
VB DataBind6.aspx
DataBinder.Eval
The ASP.NET framework supplies a static method that evaluates late-bound data binding
expressions and optionally formats the result as a string. DataBinder.Eval is convenient in
that it eliminates much of the explicit casting the developer must do to coerce values to the
desired data type. It is particularly useful when data binding controls within a templated list,
because often both the data row and the data field must be cast.
Consider the following example, where an integer will be displayed as a currency string. With
the standard ASP.NET data binding syntax, you must first cast the type of the data row in order
to retrieve the data field, IntegerValue. Next, this is passed as an argument to the
String.Format method.
VB
This syntax can be complex and difficult to remember. In contrast, DataBinder.Eval is simply
a method with three arguments: the naming container for the data item, the data field name,
and a format string. In a templated list like DataList, DataGrid, or Repeater, the naming
container is always Container.DataItem. Page is another naming container that can be
used with DataBinder.Eval.
VB
VB
It is important to note that DataBinder.Eval can carry a noticeable performance penalty over
the standard data binding syntax because it uses late-bound reflection. Use DataBinder.Eval
judiciously, especially when string formatting is not required.
VB DataBind7.aspx
Section Summary
1. The ASP.NET declarative data binding syntax uses the <%# %> notation.
2. You can bind to data sources, properties of the page or another control, collections,
expressions, and results returned from method calls.
3. List controls can bind to collections that support the ICollection, IEnumerable, or
IListSource interface, such as ArrayList, Hashtable, DataView, and DataReader.
4. DataBinder.Eval is a static method for late binding. Its syntax can be simpler than
the standard data binding syntax, but performance is slower.
ASP.NET Web Services Data access is the heart of any real-world application, and ASP.NET provides a rich set of controls that are well-integrated with the managed data access
Introducing Web Services APIs provided in the common language runtime. This section walks through several iterations of a sample that uses the ASP.NET DataGrid control to bind
to the results of SQL queries and XML data files. This section assumes some familiarity with database fundamentals and the SQL query language.
Writing a Simple Web Service
Web Service Type Marshalling
Server-side data access is unique in that Web pages are basically stateless, which presents some difficult challenges when trying to perform transactions
Using Data in Web Services such as inserting or updating records from a set of data retrieved from a database. As you'll see in this section, the DataGrid control can help manage
Using Objects and Intrinsics these challenges, allowing you to concentrate more on your application logic and less on the details of state management and event handling.
The WebService Behavior
HTML Pattern Matching
Connections, Commands, and Datasets
ASP.NET Web Applications
Application Overview The common language runtime provides a complete set of managed data access APIs for data-intensive application development. These APIs help to
Using the Global.asax File abstract the data and present it in a consistent way regardless of its actual source (SQL Server, OLEDB, XML, and so on). There are essentially three
objects you will work with most often: connections, commands, and datasets.
Managing Application State
HttpHandlers and Factories
● A connection represents a physical connection to some data store, such as SQL Server or an XML file.
● A command represents a directive to retrieve from (select) or manipulate (insert, update, delete) the data store.
Cache Services ● A dataset represents the actual data an application works with. Note that datasets are always disconnected from their source connection and data
model and can be modified independently. However, changes to a dataset can be easily reconciled with the originating data model.
Caching Overview
Page Output Caching
For a more detailed walkthrough of the managed data access solution in the common language runtime, please read the ADO.NET Overview section of this
Page Fragment Caching
tutorial.
Page Data Caching
Query Example
Deployment
Simple Select SELECT * from Employees WHERE FirstName = 'Bradley';
Deploying Applications
Using the Process Model Join Select SELECT * from Employees E, Managers M WHERE E.FirstName =
M.FirstName;
Handling Errors
Insert INSERT into Employees VALUES ('123-45-
6789','Bradley','Millington','Program Manager');
Security
Security Overview Update UPDATE Employees SET Title = 'Development Lead' WHERE FirstName =
'Bradley';
Authentication & Authorization
Windows-based Authentication Delete DELETE from Employees WHERE Productivity < 10;
Forms-based Authentication
Authorizing Users and Roles To give your page access to the classes you will need to perform SQL data access, you must import the System.Data and System.Data.SqlClient
User Account Impersonation namespaces into your page.
To use a SqlDataReader, you declare a SqlCommand instead of a SqlDataAdapter. The SqlCommand exposes an ExecuteReader method that
ASP to ASP.NET Migration
http://samples.gotdotnet.com/quickstart/aspplus/doc/webdataaccess.aspx (2 of 14) [4/02/2002 8:50:51 AM]
Microsoft ASP.NET QuickStarts Tutorial
Migration Overview returns a SqlDataReader. Note also that you must explicitly open and close the SqlConnection when you use a SqlCommand. After a call to
ExecuteReader, the SqlDataReader can be bound to an ASP.NET server control, as you'll see in the next section.
Syntax and Semantics
Language Compatibility
COM Interoperability Dim myConnection As SqlConnection = New SqlConnection("server=(local)\NetSDK;database=pubs;Trusted_Connection=yes")
Transactions Dim myCommand As SqlCommand = New SqlCommand("select * from Authors", myConnection)
myConnection.Open()
Sample Applications
A Personalized Portal Dim dr As SqlDataReader = myCommand.ExecuteReader()
An E-Commerce Storefront
...
A Class Browser Application
IBuySpy.com myConnection.Close()
When performing commands that do not require data to be returned, such as inserts, updates, and deletes, you also use a SqlCommand. The command
is issued by calling an ExecuteNonQuery method, which returns the number of rows affected. Note that the connection must be explicitly opened when
you use the SqlCommand; the SqlDataAdapter automatically handles opening the connection for you.
myCommand.Connection.Open()
myCommand.ExecuteNonQuery()
myCommand.Connection.Close()
VB
Important: Always remember to close the connection to the data model before the page finishes executing. If you do not close the connection, you might
inadvertently exhaust the connection limit while waiting for the page instances to be handled by garbage collection.
The following sample shows a simple select query bound to a DataGrid control. The DataGrid renders a table containing the SQL data.
VB DataGrid1.aspx
Like the DropDownList shown in the Data Binding section, the DataGrid control supports a DataSource property that takes an IEnumerable or
ICollection, as well as a DataSet. You can use a DataSet by assigning the DefaultView property of a table contained in the DataSet to the name of
the table you wish to use within the DataSet. The DefaultView property represents the current state of a table within a DataSet, including any changes
which have been made by application code (row deletions or value changes, for example). After setting the DataSource property, you call DataBind()
to populate the control.
MyDataGrid.DataSource=ds.Tables("Authors").DefaultView
MyDataGrid.DataBind()
VB
An alternative syntax is to specify both a DataSource and a DataMember. In this case, ASP.NET automatically gets the DefaultView for you.
MyDataGrid.DataSource=ds
MyDataGrid.DataMember="Authors"
MyDataGrid.DataBind()
VB
You can also bind directly to a SqlDataReader. In this case you are only displaying data, so the forward-only nature of the SqlDataReader is perfectly
suited to this scenario, and you benefit from the performance boost that SqlDataReader provides.
VB DataGrid1.1.aspx
Note: For the remainder of this section, only the DataSet model of data access is shown; however, any of these samples could be re-written to take
http://samples.gotdotnet.com/quickstart/aspplus/doc/webdataaccess.aspx (4 of 14) [4/02/2002 8:50:51 AM]
Microsoft ASP.NET QuickStarts Tutorial
advantage of SQLDataReader as well.
You can also perform a parameterized select using the SqlDataAdapter object. The following sample shows how you can modify the data selected using
the value posted from a select HtmlControl.
VB DataGrid2.aspx
The SqlDataAdapter maintains a Parameters collection that can be used to replace variable identifiers (denoted by an "@" in front of the name) with
values. You add a new SqlParameter to this collection that specifies the name, type, and size of the parameter, and then set its Value property to the
value of the select.
VB
Important: Note that the DataGrid's EnableViewState property has been set to false. If the data will be populated in each request, there is no benefit
to having the DataGrid store state information to be sent through a round trip with form posts. Because the DataGrid stores all of its data when
maintaining state, it is important to turn it off when appropriate to improve the performance of your pages.
DataGrid2.aspx statically populates the values of the select box, but this will not work well if those values ever change in the database. Because the select
HtmlControl also supports an IEnumerable DataSource property, you can use a select query to dynamically populate the select box instead, which
guarantees that the database and user interface are always in sync. The following sample demonstrates this process.
VB DataGrid3.aspx
To insert a row into the database, you can add a simple input form to the page, and execute an insert command in the form submit event handler. Just as
in the previous two samples, you use the command object's Parameters collection to populate the command's values. Note that you also check to make
sure the required values are not null before attempting to insert into the database. This prevents an accidental violation of the database's field constraints.
You also execute the insert command inside of a try/catch block, just in case the primary key for inserted row already exists.
VB DataGrid4.aspx
Instead of explicitly checking the input values, you could have just as easily used the validator controls provided with ASP.NET. The following sample shows
how to do that. Note that using the RegEx Validator provides the additional benefit of checking the format for the author ID, zip code, and phone number
fields.
VB DataGrid5.aspx
Updating a database can often be tricky in Web applications. The DataGrid control provides some built-in support for this scenario that makes updates
easier. To allow rows to be edited, the DataGrid supports an integer EditItemIndex property, which indicates which row of the grid should be editable.
When this property is set, the DataGrid renders the row at that index as text input boxes instead of simple labels. A value of -1 (the default) indicates that
no rows are editable. The page can enclose the DataGrid in a server-side form and get access to the edited data through the DataGrid's object model.
To figure out which row should be editable, you need a way to accept some input from the user about which row they would like to edit. The DataGrid
can contain an EditCommandColumn that renders links for firing three special events: EditCommand, UpdateCommand, and CancelCommand. The
EditCommandColumn is declaratively added to the DataGrid's Columns collection, as shown in the following example.
<Columns>
<asp:EditCommandColumn EditText="Edit" CancelText="Cancel" UpdateText="Update" />
</Columns>
</ASP:DataGrid>
On the DataGrid tag itself, you wire event handlers to each of the commands fired from the EditCommandColumn. The
DataGridCommandEventArgs argument of these handlers gives you direct access to the index selected by the client, which you use to set the
DataGrid's EditItemIndex. Note that you need to re-bind the DataGrid for the change to take effect, as shown in the following example.
VB
When a row of the DataGrid is being edited, the EditCommandColumn renders the Update and Cancel links. If the client selects Cancel, you simply
set the EditItemIndex back to -1. If the client selects Update, however, you need to execute your update command to the database. Performing an
update query requires that you know the primary key in the database for the row you wish to update. To support this, the DataGrid exposes a
DataKeyField property that you can set to the field name for the primary key. In the event handler wired to the UpdateCommand, you can retrieve the
key name from the DataGrid's DataKeys collection. You index into this collection using the ItemIndex of the event, as shown in the following example.
VB
At the end of the Update event handler, you set the EditItemIndex back to -1. The following sample demonstrates this code in action.
VB DataGrid6.aspx
VB DataGrid7.aspx
BoundColumn controls aren't the only controls you can set in the DataGrid's Columns collection. You can also specify a TemplateColumn, which gives
you complete control over the contents of the column. The template is just arbitrary content; you can render anything you like, including server controls,
inside the DataGrid's columns. The following sample demonstrates using the TemplateColumn control to render the "State" column as a drop-down list
and the "Contract" column as a check box HtmlControl. The ASP.NET data binding syntax is used to output the data field value within the template. Note
that there is a bit of tricky logic to make the drop-down list and check box reflect the state of the data inside the row.
VB DataGrid8.aspx
Just as you can place a drop-down list or check box HtmlControl in a TemplateColumn, you can also place other controls there. The following sample
adds Validator controls to the columns to check the client input before attempting to perform the update.
VB DataGrid9.aspx
Deleting from a database is very similar to an update or insert command, but you still need a way to determine the particular row of the grid to delete.
Another control that can be added to the DataGrid's Columns collection is the ButtonColumn control, which simply renders a button control.
ButtonColumn supports a CommandName property that can be set to Delete. On the DataGrid, you wire an event handler to the DeleteCommand,
where you perform the delete operation. Again, you use the DataKeys collection to determine the row selected by the client. The following sample
demonstrates this process.
VB DataGrid10.aspx
A common requirement for any grid is the ability to sort the data it contains. While the DataGrid control doesn't explicitly sort its data for you, it does
provide a way to call an event handler when the user clicks a column header, which you can use to sort the data. When the DataGrid's AllowSorting
property is set to true, it renders hyperlinks for the column headers that fire a Sort command back to the grid. You set the OnSortCommand property of
the DataGrid to the handler you want to call when the user clicks a column link. The name of the column is passed as a SortExpression property on the
DataGridSortCommandEventArgs argument, which you can use to set the Sort property of the DataView bound to the grid. The following example
demonstrates this process.
<script>
Protected Sub MyDataGrid_Sort(Src As Object, E As DataGridSortCommandEventArgs)
...
DataView Source = ds.Tables("Authors").DefaultView
Source.Sort = E.SortExpression
MyDataGrid.DataBind()
End Sub
</script>
<form runat="server">
<ASP:DataGrid id="MyDataGrid" OnSortCommand="MyDataGrid_Sort" AllowSorting="true" runat="server" />
</form>
VB
VB DataGrid11.aspx
When using BoundColumn controls, you can explicitly set the SortExpression property for each column, as demonstrated in the following sample.
VB DataGrid12.aspx
Often your data model will contain relationships that cannot be represented using just a single grid. A very common Web-based interface is one in which a
row of data can be selected that navigates the client to a "details" page, which displays detailed information about the selected row. To accomplish this
using the DataGrid, you can add a HyperLinkColumn to the Columns collection, which specifies the details page to which the client will navigate when
the link is clicked. You use the format string syntax to substitute a field value in this link, which is passed as a querystring argument. The following example
demonstrates this process.
<Columns>
<asp:HyperLinkColumn
DataNavigateUrlField="au_id"
DataNavigateUrlFormatString="datagrid13_details.aspx?id={0}"
Text="Get Details"
/>
</Columns>
</ASP:DataGrid>
On the details page, you retrieve the querystring argument and perform a join select to obtain details from the database. The following sample
demonstrates this scenario.
VB DataGrid13.aspx
In general, performing ad hoc queries comes at the expense of performance. Using stored procedures can reduce the cost of performing heavy database
operations in an application. A stored procedure is easy to create, and can even be done using a SQL statement. The following code example creates a
stored procedure that simply returns a table.
You can create stored procedures that accept parameters as well. For example:
Using a stored procedure from an ASP.NET page is just an extension of what you've learned so far about the SqlCommand object. The CommandText is
just the name of the stored procedure instead of the ad hoc query text. You indicate to the SqlCommand that the CommandText is a stored procedure
by setting the CommandType property.
myCommand.SelectCommand.CommandType = CommandType.StoredProcedure
VB
The following sample demonstrates a call to a stored procedure to fill the DataSet.
VB DataGrid14.aspx
Parameters to stored procedures are passed just as they are for ad hoc queries, as shown in the following samples.
VB DataGrid15.aspx
VB DataGrid16.aspx
At the beginning of this section it was mentioned that the DataSet was designed to abstract data in a way that is independent of the actual data source.
You can see this by changing the focus of your samples from SQL to XML. The DataSet supports a ReadXml method that takes a FileStream object as
its parameter. The file you read in this case must contain both a schema and the data you wish to read. The DataSet expects data to be in the form, as
shown in the following example.
<DocumentElement>
<TableName>
<ColumnName1>column value</ColumnName1>
<ColumnName2>column value</ColumnName2>
<ColumnName3>column value</ColumnName3>
http://samples.gotdotnet.com/quickstart/aspplus/doc/webdataaccess.aspx (12 of 14) [4/02/2002 8:50:51 AM]
Microsoft ASP.NET QuickStarts Tutorial
<ColumnName4>column value</ColumnName4>
</TableName>
<TableName>
<ColumnName1>column value</ColumnName1>
<ColumnName2>column value</ColumnName2>
<ColumnName3>column value</ColumnName3>
<ColumnName4>column value</ColumnName4>
</TableName>
</DocumentElement>
Each TableName section corresponds to a single row in the table. The following sample shows reading schema and data from an XML file using the
ReadXml method of the DataSet. Note that after the data is read into the DataSet it is indistinguishable from SQL data -- the DataGrid binds to it just
the same, as shown in the following sample.
VB DataGrid17.aspx
You can also read the data and schema separately, using the ReadXmlData and ReadXmlSchema methods of the DataSet, as shown in the following
sample.
VB DataGrid18.aspx
Just as the DataSet supports reader methods for XML data, it also supports writing the data. The following sample implements a tool for selecting data
from SQL and writing the result as XML data or schema text.
VB XMLGen.aspx
Section Summary
1. The common language runtime's managed data access APIs abstract data and present it in a consistent way regardless of its actual source (SQL
Server, OLEDB, XML, and so on).
2. To give your page access to the classes you will need to perform SQL data access, you must import the System.Data and
System.Data.SqlClient namespaces into your page.
3. Populating a dataset from a SQL query involves creating a SqlConnection, associating a SqlDataAdapter object with the connection that
contains your query statement, and filling the dataset from the command.
4. The DataGrid control supports a DataSource property that takes an IEnumerable (or ICollection) type. You can set this to the result of a
SQL query by assigning the DataSet's DefaultView property, which is of type DataView.
5. The SqlDataAdapter maintains a Parameters collection that can be used to replace variable identifiers (denoted by an "@" in front of the name)
with values.
6. When performing commands that do not require data to be returned, such as inserts, updates, and deletes, you use a SqlCommand instead of
the SqlDataAdapter. The command is issued by calling an ExecuteNonQuery method, which returns the number of rows affected.
7. The SqlConnection must be explicitly opened when you use the SqlCommand (the SqlDataAdapter automatically handles opening the
connection for you). Always remember to close the SqlConnection to the data model before the page finishes executing. If you do not close the
connection, you migh inadvertantly exhaust the connection limit while waiting for the page instances to be released to garbage collection.
8. To allow rows to be edited, the DataGrid supports an integer EditItemIndex property, which indicates which row of the grid should be editable.
When this property is set, the DataGrid renders the row at that index as text input boxes instead of simple labels.
9. The DataGrid exposes a DataKeyField property that you can set to the field name for the primary key. In the event handler wired to the
UpdateCommand, you can retrieve the key name from the DataGrid's DataKeys collection.
10. Using BoundColumn controls in the DataGrid gives you complete control over the order of the columns, as well as their ReadOnly properties.
11. Using TemplateColumn controls in the DataGrid gives you complete control over the contents of the column.
12. The ButtonColumn control can be used to simply render a button control in each row for that column, which can be associated with an event.
13. A HyperLinkColumn can be added to the DataGrid's Columns collection, which supports navigating to another page when the link is clicked.
14. When the DataGrid's AllowSorting property is set to true, it renders hyperlinks for the column headers that fire a Sort command back to the
grid. You set the OnSortCommand property of the DataGrid to the handler you want to call when the user clicks a column link.
15. The DataSet supports ReadXml, ReadXmlData, and ReadXmlSchema methods that take a FileStream as a parameter, which can be used
to populate a DataSet from an XML file.
16. Using stored procedures can reduce the cost of performing heavy database operations in an application.
ASP.NET Web Services The ItemTemplate property controls the rendering of each item in the DataSource collection. Inside an ItemTemplate, you
Introducing Web Services can define any arbitrary presentation code (HTML or otherwise). Using the ASP.NET data binding syntax, you can insert values
Writing a Simple Web Service from the data bound to the DataList or Repeater control, as shown in the following example.
Web Service Type Marshalling
Using Data in Web Services <ASP:Repeater id="MyRepeater" runat="server">
The following example demonstrates a Repeater control bound to a DataView (returned from a SQL query). HeaderTemplate
Cache Services and FooterTemplate have also been defined and render at the beginning and end of the list, respectively.
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
VB DataList1.aspx
Configuration File Format
Retrieving Configuration [Run Sample] | [View Source]
Deployment The Repeater control just iterates over the bound data, rendering the ItemTemplate once for each item in the DataSource
Deploying Applications collection. It does not render anything besides the elements contained in its templates. While the Repeater is a general purpose
Using the Process Model iterator, the DataList provides some additional features for controlling the layout of the list. Unlike the Repeater, DataList
Handling Errors renders additonal elements, like table rows and cells and spans containing style attributes, outside of the template definition to
enable this richer formatting. For example, DataList supports RepeatColumns and RepeatDirection properties that specify
whether data should be rendered in multiple columns, and in which direction (vertical or horizontal) the data items should be
Security rendered. DataList also supports style attributes, as shown in the following example.
Security Overview
Authentication & Authorization <ASP:DataList runat="server" DataSource="<%#MyData%>"
RepeatColumns="2"
Windows-based Authentication RepeatDirection="Horizontal"
Forms-based Authentication ItemStyle-Font-Size="10pt"
Authorizing Users and Roles ItemStyle-Font-Name="Verdana"
>
User Account Impersonation ...
Security and WebServices </ASP:DataList>
Localization Note: The remainder of this section concentrates on the many features of the DataList control. For more information about the
Repeater control, refer to the Repeater topic in the Web Forms Controls Reference section of this tutorial.
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications The following sample demonstrates the use of the DataList control. Note that the look of the data items has been changed from
the previous example, simply by changing the contents of the control's ItemTemplate property. The RepeatDirection and
Working with Resource Files RepeatColumns properties determine how the ItemTemplates are laid out.
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger VB Datalist2.aspx
<ItemTemplate>
</ItemTemplate>
</ASP:DataList>
The following sample demonstrates this code in action. In the MyDataList_Select event handler, you populate several other
server controls with the details about the particular selected item.
VB Datalist4.aspx
Note that while the DataList recognizes a few special commands such as Select and Edit/Update/Cancel, the command
string fired inside a template can be any arbitrary string. For all commands, the DataList's OnItemCommand is fired. You can
wire this event to a handler as in the previous example; the following example shows how to do this.
<script runat="server">
</script>
<ItemTemplate>
</ItemTemplate>
</ASP:DataList>
VB
Note that because more than one command can fire this event handler, you must employ a switch statement to determine the
particular command that was fired. The following sample demonstrates this code in action.
VB Datalist5.aspx
In addition to handling the Select command using a page-level event handler, the DataList can respond to this event internally.
If a SelectedItemTemplate is defined for the DataList, the DataList renders this template for the item that fired the Select
command. The following example uses the SelectedItemTemplate to make the title of the selected book bold.
VB Datalist6.aspx
DataList also supports an EditItemTemplate for rendering an item whose index is equal to the DataList's EditItemIndex
property. For details about how editing and updating works, refer to the Updating Data topic of the Data Access section of this
tutorial.
VB Datalist7.aspx
Sometimes it is necessary to locate a control contained inside a template. If a control is given an ID in a template, that control
can be retrieved from its container (the first control in the parent hierarchy that supports INamingContainer). In this case, the
container is the DataListItem control. Note that even though there are several controls with the same ID (by virtue of the
DataList's repetition), each is contained logically in the namespace of the DataListItem container control.
You can go through the DataList's Items collection to retrieve the DataListItem for a given index, and then call the
DataListItem's FindControl method (inherited from the base Control class) to retrieve a control with a particular ID.
<script runat="server">
End If
Next
End Sub
</script>
<ItemTemplate>
<asp:CheckBox id="Save" runat="server"/> <b>Save to Favorites</b>
</ItemTemplate>
</ASP:DataList>
VB
VB Datalist8.aspx
Section Summary
1. The DataList and Repeater controls provide developers fine-tuned control over the rendering of data-bound lists.
2. Rendering of bound data is controlled using a template, such as the HeaderTemplate, FooterTemplate, or
ItemTemplate.
3. The Repeater control is a general-purpose iterator, and does not insert anything in its rendering that is not contained in
a template.
4. The DataList control offers more control over the layout and style of items, and outputs its own rendering code for
formatting.
5. The DataList supports the Select, Edit/Update/Cancel, and Item Command events, which can be handled at the
page level by wiring event handlers to the DataList's Command events.
6. DataList supports a SelectedItemTemplate and EditItemTemplate for control over the rendering of a selected or
editable item.
7. Controls can be programmatically retrieved from a template using the Control.FindControl method. This should be
called on a DataListItem retrieved from the DataList's Items collection.
VB HelloObj.aspx
Sample Applications
A Personalized Portal
[Run Sample] | [View Source]
An E-Commerce Storefront
A Class Browser Application
Note the Import directive at the top of the page that specifies the namespace to include. Once the namespace is
IBuySpy.com
included using this directive, the class can be used from within the Web Forms page. Because the assembly is pre-
loaded by the ASP.NET runtime, only a simple namespace import is required to make the component available. The
Get URL for this page following code example the Import directive.
By default, ASP.NET loads all assemblies from the /bin directory when the application is started. The assemblies to
load are specifed through the configuration system. For details, see the Configuration Overview section. Additional
assemblies can be imported into an application using configuration as well. For example:
<configuration>
<compilation>
<assemblies>
<!--The following assemblies are loaded explicitly from the global cache-->
<add assembly="System.Data"/>
<add assembly="System.Web.Services"/>
<add assembly="System.Drawing"/>
<!--This tells ASP.NET to load all assemblies from /bin-->
<add assembly="*"/>
</assemblies>
</compilation>
</configuration>
Note: Each assembly loaded from /bin is limited in scope to the application in which it is running. This means that
peer applications could potentially use different assemblies with the same class or namespace names, without
conflicting.
The classic use for an external component is to perform data access. This simplifies the code in your page, improving
readability and separating your user interface (UI) logic from the system functionality. The following example
demonstrates a simple two-tiered Web Forms page that uses a data access component to retrieve product
information.
VB TwoTier.aspx
The data access component takes a single parameter to its constructor specifying the connection string to the product
database. The Web Forms page calls the component's GetCategories method to populate a drop-down list, and
calls the component's GetProductsForCategory method to display the products for the category selected by the
user.
A three-tiered application model extends the two-tiered scenario to include business rules between the UI and data
access logic. This model allows UI developers to work with a higher level of abstraction rather than directly
manipulating data through low-level data access component APIs. The middle business component typically enforces
business rules and ensures that the relationships and primary key constraints of the database are honored. The
following example uses the middle component to calculate a discount based on a two-digit Vendor ID entered by the
client.
VB ThreeTier.aspx
Section Summary
1. The ASP.NET runtime finds business objects (local assemblies) in a well-known /bin directory, directly under
the application root. The /bin directory offers the following advantages:
2. Classes in an assembly are made available to a page in the application using an Import directive within the
.aspx file.
3. Two-tiered applications simplify the code in a page, improving readability and separating user interface (UI)
logic from system functionality.
4. Three-tiered applications extend the two-tiered model to enable UI developers to work with a higher level of
abstraction. The middle business component typically enforces business rules and ensures that the
relationships and primary key constraints of the database are honored.
Configuration VB Simple.aspx
Configuration Overview
Configuration File Format [Run Sample] | [View Source]
Retrieving Configuration
Security The following sample shows how to add simple properties that correspond to primitive data types such as integer, Boolean,
Security Overview and string. The sample defines three properties - Message is of type string, MessageSize is of type enumeration, and
Authentication & Authorization Iterations is of type integer. Note the page syntax for setting simple and enumeration properties.
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
VB SimpleProperty.aspx
Localization
Internationalization Overview
[Run Sample] | [View Source]
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Defining Class Properties
Tracing If a class A has a property whose type is class B, then the properties of B (if any) are called subproperties of A. The following
Tracing Overview sample defines a custom control SimpleSubProperty that has a property of type Format. Format is a class that has two
Trace Logging to Page Output primitive properties - Color and Size, which in turn become subproperties of SimpleSubProperty.
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview VB SimpleSubProperty.aspx
Performance Tuning Tips
Measuring Performance [Run Sample] | [View Source]
ASP to ASP.NET Migration Note that ASP.NET has a special syntax for setting subproperties. The following code example shows how to declaratively set
Migration Overview the Format.Color and Format.Size subproperties on SimpleSubProperty. The "-" syntax denotes a subproperty.
VB SimpleInnerContent.aspx
Note: If your custom control derives from WebControl, it will not have the parsing logic described in the sample, because
WebControl is marked with ParseChildrenAttribute(ChildrenAsProperties = true), which results in a different parsing
logic. For more information about the ParseChildrenAttribute, see the SDK documentation.
You can author new controls by combining existing controls using class composition. Composite controls are equivalent to
user controls that are authored using ASP.NET page syntax. The main difference between user controls and composite
controls is that user controls are persisted as .ascx text files, whereas composite controls are compiled and persisted in
assemblies.
● Override the protected CreateChildControls method inherited from Control to create instances of child controls
and add them to the Controls collection.
● If new instances of your composite control will repeatedly be created on a page, implement the
System.Web.UI.INamingContainer interface. This is a tagging interface that has no methods. When it is
implemented by a control, the ASP.NET page framework creates a new naming scope under that control. This
ensures that the child controls will have unique IDs in the hierarchical tree of controls.
You do not have to override the Render method because child controls provide rendering logic. You can expose properties
that synthesize properties of the child controls.
The following sample defines a composite control, Composition1, that combines a System.Web.UI.LiteralControl and a
System.Web.UI WebControls.TextBox. Composition1 exposes a custom property, Value, of type integer, that maps
to the Text property of TextBox.
VB Composition1.aspx
A composite control can handle events raised by its child controls. This is accomplished by providing event handling methods
and attaching delegates to the events raised by the child controls.
The following sample shows a composite control, Composition2, that adds two button controls (named Add and
Subtract) to the composite control from the previous example and provides event handling methods for the Click events of
the buttons. These methods increment and decrement the Value property of Composition2. The CreateChildControls
method of Composition2 creates instances of event handlers (delegates) that reference these methods, and attaches the
delegates to the Click events of the Button instances. The end result is a control that does its own event handling - when
the Add button is clicked, the value in the text box is incremented, and when the Subtract button is clicked, the value is
decremented.
VB Composition2.aspx
A composite control can define custom events that it raises in response to events raised by its child controls.
The following example shows a composite control, Composition3, that raises a custom event, Change, in response to the
TextChanged event of the TextBox child control.
● The custom Change event is defined using the standard event pattern. (This pattern includes the definition of a
protected OnChange method that raises the Change event.)
VB
● An event-handling method is defined for the TextChanged event of TextBox. This method raises the Change
event by invoking the OnChange method.
VB
● The CreateChildControls method creates an instance of an event handler that references the above method, and
attaches the event handler to the TextChanged event of the TextBox instance.
End Sub
VB
The Change event can be handled by a page that hosts the control, as shown in the following sample. In the sample, the
page provides an event-handling method for the Change event that sets the Value property to zero if the number entered
by the user is negative.
VB Composition3.aspx
Maintaining State
Every Web Forms control has a State property (inherited from Control) that enables it to participate in State management.
The type of State is Sytem.Web.UI.StateBag, which is a data structure equivalent to a hashtable. A control can save data
in State as key/value pairs. State is persisted to a string variable by the ASP.NET page framework and makes a round trip to
the client as a hidden variable. Upon postback, the page framework parses the input string from the hidden variable and
populates the State property of each control in the control hierarchy of a page. A control can restore its state (set properties
and fields to their values before postback) using the State property. Control developers should be aware that there is a
performance overhead in sending data by round trip to the client, and be judicious about what they save in State.
VB
The following sample shows a custom control, Label, that has two properties, Text and FontSize, that are saved in
State. The ASP.NET page that uses Label contains buttons that have event handlers to increase the font size of the text in
Label when a button is clicked. Thus the font size increases every time a button is clicked. This is possible only due to state
management - Label needs to know what the font size was before postback in order to render the next larger font size after
postback.
VB Label.aspx
You authored a simple custom control at the beginning of this QuickStart. The following example demonstrates a custom
control that does something more meaningful - it renders an input box, and reads in data entered by the user. A control that
examines postback (input) data must implement the System.Web.UI.IPostBackDataHandler interface. This signals to the
ASP.NET page framework that a control should participate in postback data handling. The page framework passes input data
to the LoadPostData method of this interface as key/value pairs. In its implementation of this method, the control can
examine the input data and update its properties as shown below.
VB
The following sample defines a custom control, NonComposition1, that implements IPostBackDataHandler and has one
property, Value. The control renders an HTML input box whose text attribute is the string representation of Value. The
property is set by examining postback input data. The page that uses NonComposition1 also has two buttons that have
event handlers to increment and decrement the Value property of NonComposition1.
VB NonComposition1.aspx
If a control wants to capture postback events (form submissions from a client), it must implement the
System.Web.UI.IPostBackEventHandler interface. This signals to the ASP.NET page framework that a control wants to
be notified of a postback event. The RaisePostBackEvent method allows the control to handle the event, and to raise other
events. Additionally, the ASP.NET page framework has a custom event architecture that allows a control to generate client-
side JavaScript that initiates custom postback. Normally, postback is initiated by only a few elements such as a Submit button
or an Image button. However, by emitting client-side JavaScript, a control can also initiate postback from other HTML
elements.
The following example defines a custom control, NonComposition2, that builds on the previous example,
NonComposition1. In addition to the interface provided by NonComposition1, it renders two HtmlButtons that
generate client-side JavaScript to cause postback when clicked. The name attributes of these buttons are Add and Subtract.
The name attribute is passed as a string argument to RaisePostBackEvent by the page framework. NonComposition2
implements RaisePostBackEvent to increment the Value property if Add is clicked and to decrement Value if Subtract is
clicked, as shown below.
VB
The user interface that is presented to the client is identical to that in the previous example; however, the entire UI is
rendered by one custom control that also handles the postback events. The page developer can simply add
NonComposition2 to the page, without providing any event handling logic. The following sample presents this code in
action.
VB NonComposition2.aspx
The ASP.NET page framework allows control developers to author controls that separate the user interface from the control
logic through the use of templates. Page developers can customize the presentation of the control by providing the UI as
parameters between template tags.
Templated controls have one or more properties of type System.Web.UI.ITemplate, as shown in the following example.
VB
The attribute (in square brackets above) specifies the type of the container (parent) control.
The ITemplate interface has one method, InstantiateIn, that creates a control instance dynamically. This is invoked on
the ITemplate property in the CreateChildControls method, as shown in the following example.
VB
The following sample shows a simple templated control and an ASP.NET page that uses it.
VB Template1.aspx
The following sample shows a more complex use of templates to create a databound control. The Repeater control defined in
this example is similar to the System.Web.UI.WebControls.Repeater control.
VB Repeater1.aspx
The following sample modifies the preceding sample so that a page consumer can walk its Items collection during postback to
pull out values from it.
VB Repeater2.aspx
As you saw in Retrieving Inner Content , if a control A has nested controls within its control tags on a page, the page parser
adds instances of those controls to A's Controls collection. This is done by invoking the AddSubParsedObject method of A.
Every control inherits this method from Control; the default implementation simply inserts a child control into the control
hierarchy tree. A control can override the default parsing logic by overriding the AddSubParsedObject method. Note that
this discussion is somewhat simplified; more details are given in the next example.
The following sample defines a custom control, CustomParse1, that overrides the default parsing logic. When a child control
of a certain type is parsed, it adds it to a collection. The rendering logic of CustomParse1 is based on the number of items
in that collection. A simple custom control, Item, is also defined in the sample.
VB CustomParse1.aspx
Note: If your custom control derives from WebControl, it will not have the parsing logic described in the sample, because
WebControl is marked with ParseChildrenAttribute(ChildrenAsProperties = true), which results in a different parsing
logic. For more information about the ParseChildrenAttribute, see the SDK documentation. The Retrieving Inner Content
topic also describes this issue in more detail.
The ASP.NET page framework uses classes called control builders to process the declarations within control tags on a page.
Every Web Forms control is associated with a default control builder class, System.Web.UI.ControlBuilder. The default
control builder adds a child control to the Controls collection for every nested control that it encounters within control tags.
Additionally, it adds Literal controls for text between nested control tags. You can override this default behavior by
associating a custom control builder class with your control. This is done by applying a control builder attribute to your
control, as shown in the following example.
VB
The element in square brackets above is a common language runtime attribute that associates the
CustomParse2ControlBuilder class with the CustomParse2 control. You can define your own custom control builder
by deriving from ControlBuilder and overriding its methods.
The following sample defines a custom control builder that overrides the GetChildControlType method inherited from
ControlBuilder. This method returns the type of the control to be added and can be used to decide which controls will be
added. In the example, the control builder will add a child control only if the tag name is "customitem". The code for the
control is very similar to the previous example, except for the addition of the custom attribute.
VB CustomParse2.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview VB Reference1.aspx
Page Output Caching
Page Fragment Caching [Run Sample] | [View Source]
Page Data Caching
Code enclosed by <% ... %> is just executed, while expressions that include an equal sign,
Configuration <%= ... %>, are evaluated and the result is emitted as content. Therefore
<%="Hello World" %> renders the same thing as the C# code
Configuration Overview
<% Response.Write("Hello World"); %>.
Configuration File Format
Retrieving Configuration
Note: For languages that utilize marks to end or separate statements (for example, the
semicolon (;) in C#), it is important to place those marks correctly depending on how your code
should be rendered.
Deployment
Deploying Applications
Using the Process Model C# code
Handling Errors <% Response.Write("Hello A semicolon is necessary to end the
World"); %> statement.
Security <%="Hello World"; %> Wrong: Would result in
Security Overview "Response.Write("Hello
World";);".
Authentication & Authorization
Windows-based Authentication
Code declaration blocks define member variables and methods that will be compiled into the
Localization generated Page class. These blocks can be used to author page/navigation logic. The following
Internationalization Overview example demonstrates how a Subtract method can be declared within a <script
Setting Culture and Encoding runat="server"> block, and then invoked from the page.
VB
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
By adding a tag with the ID "Message", an instance of Label is created at run time:
The control can then be accessed using the same name. The following line sets the Text
property of the control.
VB
VB Reference3.aspx
HTML server controls enable page developers to programmatically manipulate HTML elements
within a page. An HTML server control tag is distinguished from client HTML elements by means
of a "runat=server" attribute. The following example demonstrates how an HTML <span
runat=server> server control can be used within an ASP.NET page.
As with other server controls, the methods and properties are accessible programmatically, as
shown in the following example.
VB
VB Reference4.aspx
The data binding support built into ASP.NET enables page developers to hierarchically bind
control properties to data container values. Code located within a <%# %> code block is only
executed when the DataBind method of its parent control container is invoked. The following
example demonstrates how to use the data binding syntax within an <asp:datalist
runat=server> control.
Within the datalist, the template for one item is specified. The content of the item template is
specified using a data binding expression and the Container.DataItem refers to the data
source used by the datalist MyList.
In this case the data source of the MyList control is set programmatically, and then
DataBind() is called.
items.Add("One")
items.Add("Two")
items.Add("Three")
MyList.DataSource = items
MyList.DataBind()
End Sub
VB
Calling the DataBind method of a control causes a recursive tree walk from that control on
down in the tree; the DataBinding event is raised on each server control in that hierarchy, and
data binding expressions on the control are evaluated accordingly. So, if the DataBind method
of the page is called, then every data binding expression within the page will be called.
VB Reference5.aspx
Object tags enable page developers to declare and create instances of variables using a
declarative, tag-based syntax. The following example demonstrates how the object tag can be
used to create an instance of an ArrayList class.
The object will be created automatically at run time and can then be accessed through the ID
"items".
VB
VB Reference6.aspx
Server-side comments enable page developers to prevent server code (including server controls)
and static content from executing or rendering. The following sample demonstrates how to block
content from executing and being sent down to a client. Note that everything between <%-- and
--%> is filtered out and only visible in the original server file, even though it contains other
ASP.NET directives.
<%--
<asp:calendar id="MyCal" runat=server/>
<% For I=0 To 44 %>
Hello World <br>
<% Next %>
--%>
VB
VB Reference7.aspx
Server-side #Includes enable developers to insert the raw contents of a specified file anywhere
within an ASP.NET page. The following sample demonstrates how to insert a custom header and
footer within a page.
VB Reference8.aspx
To make this service available, we might name the file HelloWorld.asmx and
Configuration place it on a server called SomeDomain.com inside a virtual directory called
Configuration Overview someFolder. Using a Web browser, you could then enter the URL
Configuration File Format http://SomeDomain.com/someFolder/HelloWorld.asmx, and the
resulting page would show the public methods for this Web Service (those
Retrieving Configuration
marked with the WebMethod attribute), as well as which protocols (such as
SOAP, or HTTP GET) you can use to invoke these methods.
Deployment
Deploying Applications Entering the address:
Using the Process Model http://SomeDomain.com/someFolder/HelloWorld.asmx?WSDL into the
Handling Errors browser returns a Web Service Description Language (WSDL) document. This
WSDL document is very important, and is used by clients that will access the
service.
Security
Security Overview Accessing Web Services
Authentication & Authorization
Windows-based Authentication
In addition to the ASP.NET server side technology that allows developers to
Forms-based Authentication create Web Services, the .NET Framework provides a sophisticated set of tools
Authorizing Users and Roles and code to consume Web Services. Because Web Services are based on open
protocols such as the Simple Object Access Protocol (SOAP), this client
User Account Impersonation technology can also be used to consume non-ASP.NET Web Services.
Security and WebServices
Within the SDK, there is a tool called the Web Services Description Language tool
Localization (WSDL.exe). This command-line tool is used to create proxy classes from WSDL.
For example, you could enter:
Internationalization Overview
Setting Culture and Encoding
WSDL http://someDomain.com/someFolder/HelloWorld.asmx?WSDL
Localizing ASP.NET Applications
Working with Resource Files
to create a proxy class called HelloWorld.cs.
Tracing This class would look very similar to the class created in the previous section. It
Tracing Overview would contain a method called SayHelloWorld that returns a string. Compiling
Trace Logging to Page Output this proxy class into an application and then calling this proxy class's method
results in the proxy class packaging a SOAP request across HTTP and receiving
Application-level Trace Logging
the SOAP-encoded response, which is then marshaled as a string.
Debugging From the client perspective, the code would be simple, as shown in the following
The SDK Debugger example.
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview VB MathService.asmx VB MathService.asmx?wsdl
Page Output Caching
Page Fragment Caching [Run Sample] | [View Source] [View Sample]
Page Data Caching
Authorizing Users and Roles WSDL.exe accepts a variety of command-line options, however to create a proxy only one option is
User Account Impersonation required: the URI to the WSDL. In this example, we are passing a few extra options that specify the
preferred language, namespace, and output location for the proxy. We are also compiling against a
Security and WebServices
previously saved WSDL file instead of the URI to the service itself:
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
VB MathServiceClient.aspx
Debugging
The SDK Debugger
[Run Sample] | [View Source]
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Sample Applications
Parameters:
A Personalized Portal
An E-Commerce Storefront
Both by-value and by-reference (in/out) parameters are supported
A Class Browser Application when using the SOAP protocol. By-reference parameters can send the
IBuySpy.com value both ways: up to the server, and back to the client. When
passing input parameters to a Web Service using HTTP GET/POST,
only a limited set of data types are supported, and they must be by-
Get URL for this page value parameters. The supported types for HTTP GET/POST
parameters are listed below:
Type Description
The following example demonstrates the use of the types listed above,
using a SOAP proxy generated from WSDL.exe. Note that because there is
more than one public class defined in the .asmx file, you must specify
which is to be treated as the WebService class using the "Class" attribute
of the WebService directive:
VB DataTypes.asmx VB
DataTypes.asmx?wsdl
[Run Sample] |
[View Source] [View Sample]
integers.
● The GetMode method returns an enum value.
● The GetOrder method returns a class (which is almost the same
as a struct here).
● The GetOrders method returns an array of Order objects.
Using the WSDL.exe command line proxy generation tool, the marshaling
of these data types is transparent to the consuming client application. A
sample client application for the above Web Service follows:
VB DataTypesClient.aspx
ASP.NET Web Applications The client application for this Web Service calls GetTitleAuthors and binds
the Authors table to a DataGrid control, as you've seen in previous
Application Overview examples. To illustrate the PutTitleAuthors method, the client removes
Using the Global.asax File three rows of data from the DataSet before calling this method, printing
Managing Application State out the number of rows received by the service.
HttpHandlers and Factories
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching VB DataServiceClient.aspx
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The first method in the sample .asmx file, UpdateHitCounter, accesses
Introducing Web Forms the Session and adds 1 to the "HitCounter" value. It then returns this
Working with Server Controls value as a String. The second method, UpdateAppCounter does the
same thing, but with the Application. Notice the following:
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls <WebMethod(EnableSession:=true)>
Data Binding Server Controls
Server-Side Data Access VB
Data Access and Customization
Working with Business Objects Session state for Web Services is disabled by default, and you have to use
a special attribute property to enable Sessions. However, Sessions aren't
Authoring Custom Controls
needed for this object, since it only uses the Application object.
Web Forms Controls Reference
Web Forms Syntax Reference
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching VB SessionServiceClient.aspx
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
WebService http://msdn.microsoft.com/workshop/author/webservice/overview.asp
ASP.NET Web Services Behavior
Introducing Web Services Overview
Writing a Simple Web Service Using the http://msdn.microsoft.com/workshop/author/webservice/using.asp
Web Service Type Marshalling WebService
Behavior
Using Data in Web Services
The http://msdn.microsoft.com/workshop/author/webservice/webservice.asp
Using Objects and Intrinsics
WebService
The WebService Behavior Behavior
HTML Pattern Matching
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services By placing a simple .aspx page like the following in the virtual directory and accessing it
Caching Overview with the browser, you trigger the creation of the ASP.NET application.
Page Output Caching
Page Fragment Caching
<%@Page Language="VB"%>
Page Data Caching <html>
<body>
<h1>hello world, <% Response.Write(DateTime.Now.ToString()) %></h1>
Configuration </body>
Configuration Overview </html>
Configuration File Format
Retrieving Configuration VB
Deployment Now you can add appropriate code to use the Application object--to store objects with
Deploying Applications application scope, for example. By creating a global.asax file you also can define various
event handlers-- for the Application_Start event, for example.
Using the Process Model
Handling Errors
Lifetime of an Application
Security
An ASP.NET application is created the first time a request is made to the server; before
Security Overview that, no ASP.NET code executes. When the first request is made, a pool of
HttpApplication instances is created and the Application_Start event is raised. The
Authentication & Authorization
HttpApplication instances process this and subsequent requests, until the last instance
Windows-based Authentication exits and the Application_End event is raised.
Forms-based Authentication
Authorizing Users and Roles Note that the Init and Dispose methods of HttpApplication are called per instance and
User Account Impersonation thus can be called several times between Application_Start and Application_End.
Only these events are shared among all instances of HttpApplication in one ASP.NET
Security and WebServices
application.
Tracing
Tracing Overview <%
Application("counter") = CType(Application("counter") + 1, Int32)
Trace Logging to Page Output
%>
Application-level Trace Logging
VB
Debugging
The SDK Debugger To make this code thread safe, serialize the access to the Application object using the
Lock and UnLock methods. However, doing so also means accepting a considerable
performance hit:
Performance
Performance Overview
Performance Tuning Tips <%
Measuring Performance Application.Lock()
Application("counter") = CType(Application("counter") + 1, Int32)
Application.UnLock()
ASP to ASP.NET Migration %>
Migration Overview
Syntax and Semantics VB
Language Compatibility
COM Interoperability Another solution is to make the object stored with an application scope thread safe. For
Transactions example, note that the collection classes in the System.Collections namespace are not
thread safe for performance reasons.
Sub Application_Start()
ASP.NET Web Applications ' Application startup code goes here
Application Overview End Sub
</script>
Using the Global.asax File
Managing Application State
VB
HttpHandlers and Factories
If the event handling code needs to import additional namespaces, the @ import directive can be used on an .aspx
Cache Services page, as follows:
Caching Overview
Page Output Caching <%@ Import Namespace="System.Text" %>
Page Fragment Caching
Page Data Caching The following sample illustrates the lifetime of Application, Session, and Request.
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment VB Application1.aspx
Deploying Applications
Using the Process Model
[Run Sample] | [View Source]
Handling Errors
The first time the page is opened, the Start event is raised for the application and the session:
Security
Security Overview
Sub Application_Start()
Authentication & Authorization Response.Write("Application is Starting...<br>")
Windows-based Authentication End Sub
Forms-based Authentication Sub Session_Start()
Authorizing Users and Roles Response.Write("Session is Starting...<br>")
User Account Impersonation Session.Timeout = 1
End Sub
Security and WebServices
VB
Localization
Internationalization Overview
Setting Culture and Encoding The BeginRequest and EndRequest events are raised on each request. When the page is refreshed, only
messages from BeginRequest, EndRequest, and the Page_Load method will appear. Note that by abandoning
Localizing ASP.NET Applications
the current session (click the "End this session" button) a new session is created and the Session_Start event is
Working with Resource Files raised again.
Performance
Performance Overview Section Summary
Performance Tuning Tips
Measuring Performance 1. ASP.NET applications can define event handlers with application-wide or session-wide scope in the
Global.asax file.
2. ASP.NET applications can define objects with application-wide or session-wide scope in the Global.asax file.
ASP to ASP.NET Migration
Migration Overview
Syntax and Semantics
Language Compatibility
COM Interoperability
Transactions
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
In the Page_Load method, the DataView is then retrieved and used to populate a DataGrid object:
Configuration
Configuration Overview
Configuration File Format Sub Page_Load(sender As Object, e As EventArgs)
Retrieving Configuration Dim Source As New DataView = CType(Application("Source"), DataView)
...
MyDataGrid.DataSource = Source
Deployment ...
Deploying Applications End Sub
Using the Process Model
Handling Errors VB
The advantage of this solution is that only the first request pays the price of retrieving the data. All subsequent requests use
Security
the already existing DataView object. As the data is never modified after initialization, you do not have to make any
Security Overview provisions for serializing access.
Authentication & Authorization
Windows-based Authentication Using Session State
Forms-based Authentication
Authorizing Users and Roles The following sample illustrates the use of session state to store volatile user preferences.
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
VB Session1.aspx
Debugging
The SDK Debugger [Run Sample] | [View Source]
Performance To provide individual data for a user during a session, data can be stored with session scope. In the following sample,
values for user preferences are initialized in the Session_Start event in the Global.asax file.
Performance Overview
Performance Tuning Tips
Measuring Performance Sub Session_Start()
Session("BackColor") = "beige"
...
ASP to ASP.NET Migration End Sub
Migration Overview
Syntax and Semantics
VB
Language Compatibility
COM Interoperability In the following customization page, values for user preferences are modified in the Submit_Click event handler according
Transactions to user input.
VB
<style>
body
{
font: <%=GetStyle("FontSize")%> <%=GetStyle("FontName")%>;
background-color: <%=GetStyle("BackColor")%>;
}
a
{
color: <%=GetStyle("LinkColor")%>
}
</style>
To verify that the values are really stored with session scope, open the sample page twice, then change one value in the
first browser window and refresh the second one. The second window picks up the changes because both browser instances
share a common Session object.
Configuring session state: Session state features can be configured via the <sessionState> section in a web.config
file. To double the default timeout of 20 minutes, you can add the following to the web.config file of an application:
By default, ASP.NET will store the session state in the same process that processes the request, just as ASP does. If cookies
are not available, a session can be tracked by adding a session identifier to the URL. This can be enabled by setting the
following:
<sessionState
cookieless="true"
/>
By default, ASP.NET will store the session state in the same process that processes the request, just as ASP does.
Additionally, ASP.NET can store session data in an external process, which can even reside on another machine. To enable
this feature:
● Start the ASP.NET state service, either using the Services snap-in or by executing "net start aspnet_state" on the
command line. The state service will by default listen on port 42424. To change the port, modify the registry key
for the service: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSte\Services\aspnet_state\Parameters\Port
● Set the mode attribute of the <sessionState> section to "StateServer".
● Configure the stateConnectionString attribute with the values of the machine on which you started
aspnet_state.
The following sample assumes that the state service is running on the same machine as the Web server ("localhost") and
uses the default port (42424):
<sessionState
mode="StateServer"
stateConnectionString="tcpip=localhost:42424"
/>
Note that if you try the sample above with this setting, you can reset the Web server (enter iisreset on the command
line) and the session state value will persist.
The following sample illustrates the use of client-side cookies to store volatile user preferences.
VB Cookies1.aspx
Storing cookies on the client is one of the methods that ASP.NET's session state uses to associate requests with sessions.
Cookies can also be used directly to persist data between requests, but the data is then stored on the client and sent to the
server with every request. Browsers place limits on the size of a cookie; therefore, only a maximum of 4096 bytes is
guaranteed to be acceptable.
When the data is stored on the client, the Page_Load method in the file cookies1.aspx checks whether the client has sent
a cookie. If not, a new cookie is created and initialized and stored on the client:
VB
On the same page, a GetStyle method is used again to provide the individual values stored in the cookie:
VB
Verify that the sample works by opening the cookies1.aspx page and modifying the preferences. Open the page in another
window, it should pick up the new preferences. Close all browser windows and open the cookies1.aspx page again. This
should delete the temporary cookie and restore the default preference values.
VB Cookies2.aspx
To make a cookie persistent between sessions, the Expires property on the HttpCookie class has to be set to a date in the
future. The following code on the customization.aspx page is identical to the previous sample, with the exception of the
assignment to Cookie.Expires:
Response.AppendCookie(cookie)
Response.Redirect(State("Referer").ToString())
End Sub
VB
Verify that the sample is working by modifying a value, closing all browser windows, and opening cookies2.aspx again. The
window should still show the customized value.
Using ViewState
This sample illustrates the use of the ViewState property to store request-specific values.
VB PageState1.aspx
ASP.NET provides the server-side notion of a view state for each control. A control can save its internal state between
requests using the ViewState property on an instance of the class StateBag. The StateBag class provides a dictionary-
like interface to store objects associated with a string key.
The file pagestate1.aspx displays one visible panel and stores the index of it in the view state of the page with the key
PanelIndex:
VB
Note that if you open the page in several browser windows, each browser window will initially show the name panel. Each
window can independently navigate between the panels.
Section Summary
1. Use application state variables to store data that is modified infrequently but used often.
2. Use session state variables to store data that is specific to one session or user. The data is stored entirely on the
server. Use it for short-lived, bulky, or sensitive data.
3. Store small amounts of volatile data in a nonpersistent cookie. The data is stored on the client, sent to the server
on each request, and expires when the client ends execution.
4. Store small amounts of non-volatile data in a persistent cookie. The data is stored on the client until it expires and
Configuration
Configuration Overview
Configuration File Format VB SimpleHandler
Retrieving Configuration
[Run Sample] | [View Source]
Deployment
Deploying Applications A custom HTTP handler can be created by implementing the IHttpHandler interface, which contains only two
Using the Process Model methods. By calling IsReusable, an HTTP factory can query a handler to determine whether the same instance
can be used to service multiple requests. The ProcessRequest method takes an HttpContext instance as a
Handling Errors
parameter, which gives it access to the Request and Response intrinsics. In the following sample, request
data is ignored and a constant string is sent as a response to the client.
Security
Security Overview
Public Class SimpleHandler : Inherits IHttpHandler
Authentication & Authorization Public Sub ProcessRequest(context As HttpContext)
Windows-based Authentication context.Response.Write("Hello World!")
Forms-based Authentication End Sub
Localization VB
Internationalization Overview
Setting Culture and Encoding After placing the compiled handler assembly in the application's \bin directory, the handler class can be specified
as a target for requests. In this case, all requests for "SimpleHandler.aspx" will be routed to an instance of the
Localizing ASP.NET Applications
SimpleHandler class, which lives in the namespace Acme.SimpleHandler.
Working with Resource Files
<httphandlers> <add verb="*" path="SimpleHandler.aspx"
Tracing type="Acme.SimpleHandler,SimpleHandler" /> </httphandlers>
Tracing Overview
Trace Logging to Page Output Section Summary
Application-level Trace Logging
1. HTTP Handlers and factories are the backbone of the ASP.NET page framework.
2. Factories assign each request to one handler, which processes the request.
Debugging 3. Factories and handlers are defined in the web.config file. Settings for factories are inherited by
The SDK Debugger subdirectories.
4. To create a custom handler, implement IHttpHandler and add the class in the <httphandlers>
section of the web.config in the directory.
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Configuration This directive simply indicates that the page should be cached for 60
Configuration Overview seconds and that the page does not vary by any GET or POST parameters.
Requests received while the page is still cached are satisfied from the
Configuration File Format cache. After 60 seconds, the page is removed from the cache; the next
Retrieving Configuration request is handled explicitly and caches the page again.
Deployment Of course, in the previous example, very little work is saved by output
caching. The following example shows the same technique for output
Deploying Applications caching, but queries a database and displays the results in a grid.
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication VB Outputcache2.aspx
Forms-based Authentication
Authorizing Users and Roles [Run Sample] | [View Source]
User Account Impersonation
Security and WebServices
In the final example, the application is modified slightly to allow the user to
selectively query for authors in various states. This example demonstrates
caching requests varying by the name/value pairs in the query string using
Localization
the VaryByParam attribute of the @ OutputCache directive.
Internationalization Overview
Setting Culture and Encoding
<%@ OutputCache Duration="60" VaryByParm="state" %>
Localizing ASP.NET Applications
Working with Resource Files
For each state in the data set, there is a link that passes the desired state
as part of the query string. The application then constructs the appropriate
Tracing database query and shows authors belonging only to the selected state.
Tracing Overview
Trace Logging to Page Output Note that the first time you click the link for a given state, it generates a
new timestamp at the bottom of the page. Thereafter, whenever a request
Application-level Trace Logging for that state is resubmitted within a minute, you get the original
timestamp indicating that the request has been cached.
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance VB Outputcache3.aspx
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60))
Sample Applications Response.Cache.SetCacheability(HttpCacheability.Public)
A Personalized Portal
An E-Commerce Storefront VB
A Class Browser Application
IBuySpy.com To make this a sliding expiration policy, where the expiration time out
resets each time the page is requested, set the SlidingExpiration
property as shown in the following code.
Get URL for this page
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60))
Response.Cache.SetCacheability(HttpCacheability.Public)
Response.Cache.SetSlidingExpiration(True)
VB
Applications being ported from ASP may already be setting cache policy
using the ASP properties; for example:
Response.CacheControl = "Public"
Response.Expires = 60
VB
These properties are supported by ASP.NET and have the same effect as
the other examples that have been shown.
Section Summary
If the user control contained a drop-down select box control named Category, the user control's output would vary
ASP.NET Web Applications based on the selected value within that control.
Application Overview
Using the Global.asax File Just as it is possible to nest user controls recursively within a page (that is, a user control declared within another server
Managing Application State control), it is also possible to nest output-cached user controls recursively. This provides a powerful composition model
that enables cached regions to be composed of further subcached regions.
HttpHandlers and Factories
The following sample code demonstrates how to cache two menu sections of a page using a declarative user control.
Cache Services
Caching Overview
Page Output Caching <%@ Register TagPrefix="Acme" TagName="Menu" Src="Menu.ascx" %>
Page Fragment Caching <html>
Page Data Caching <body>
<table>
<tr>
Configuration <td>
Configuration Overview <Acme:Menu Category="LeftMenu" runat=server/>
</td>
Configuration File Format
<td>
Retrieving Configuration <h1>Hi, the time is now: <%=Now%> </h1>
</td>
<td>
Deployment <Acme:Menu Category="RightMenu" runat=server/>
Deploying Applications </td>
Using the Process Model <tr>
</table>
Handling Errors
</body>
</html>
Security
Security Overview VB
Authentication & Authorization
Windows-based Authentication The following sample code shows the implementation of the "Acme:Menu" user control with caching support.
Forms-based Authentication
Authorizing Users and Roles
<%@ OutputCache Duration="120" VaryByParam="none" %>
User Account Impersonation
Security and WebServices <script language="VB" runat=server>
Localizing ASP.NET Applications MyMenu.DataSource = conn.Execute("select * from menu where category=" & Category)
MyMenu.DataBind()
Working with Resource Files
End Sub
</script>
Tracing
Tracing Overview <asp:datagrid id="MyMenu" runat=server/>
Trace Logging to Page Output
Application-level Trace Logging VB
Debugging Note that this example output caches the response of each user control for a period of 120 seconds. All logic necessary
to recreate each menu user control in the event of a cache miss (either because 120 seconds has expired or because
The SDK Debugger
memory conditions on the server have become scarce) is encapsulated cleanly within the user control.
Performance The following example shows simple fragment caching. The sample caches the output from a control that retrieves data
Performance Overview from an SQL Server database, while keeping the dynamic properties of the parent page. You can see that the page is
dynamic because the time is updated with every refresh, while the control is only updated every 60 seconds.
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal Caveats
An E-Commerce Storefront
A Class Browser Application Note: Attempts to programmatically manipulate an output-cached control from its containing page result in an error.
For example, attempts to use a declarative data binding expression on the user control tag generates parser errors, as
IBuySpy.com shown in the following code.
Get URL for this page <!-- The following tags generate parser errors. -->
<Acme:Menu Category='<%# Container.DataItem("Category")' runat="server"/>
The reason for this is simple. In cases when the content of a user control is output cached, an instance of the control is
created only on the first request; thus, once cached, the control is no longer available. Instead, you should encapsulate
all the logic necessary to create the content of a user control directly within the control itself; this is typically done within
the user control's Page_Load event or Page_PreRender event.
You can declare and use other declarative property parameters to customize the control. For example, the previous user
control can be customized as follows:
These declarations cause the appropriate code to be generated and executed by the page compiler in the event that the
control is created as a result of a cache miss. User control developers can then access these settings just as they would
in a non-cached user control scenario.
Section Summary
1. In addition to output caching an entire page, ASP.NET provides a simple way for you to output cache regions
of page content, which is appropriately named fragment caching.
2. You delineate regions of your page with a user control and mark them for caching using the @ OutputCache
directive introduced in the previous section.
3. Just as it is possible to nest user controls recursively within a page (that is, a user control declared within
another server control), it is also possible to nest output-cached user controls recursively.
4. Attempts to programmatically manipulate an output-cached control from its containing page result in an error.
Instead, you should encapsulate all the logic necessary to create the content of a user control directly within
the control itself, typically within the user control's Page_Load event or Page_PreRender event.
5. It is possible to declare and use other declarative property parameters to customize the control.
Handling Errors that is periodically updated. The application processes the data in the
file and creates a graph of objects that represent that data in a
consumable format. The application caches that data and inserts a
Security dependency on the file from which the data was read. When the file is
Security Overview updated, the data is removed from the cache and the application can
reread it and reinsert the updated copy of the data.
Authentication & Authorization
Windows-based Authentication
Using the Data Cache
Forms-based Authentication
Authorizing Users and Roles
The following sample shows a simple use of the cache. It executes a database
User Account Impersonation query and caches the result, which it continues to use for the lifetime of the
Security and WebServices application. When you run the sample, note the message at the bottom of the
page. When first requested, it indicates that the data was explicitly retrieved
from the database server. After refreshing the page, the page notes that the
Localization cached copy was used.
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview VB Datacache1.aspx
Trace Logging to Page Output
Application-level Trace Logging [Run Sample] | [View Source]
Debugging The next example shows a cache item that depends on an XML file. It is similar
The SDK Debugger to the first example, although in this case the data is retrieved from an XML data
source instead of a database server. When the data is cached, the XML file is
added as a dependency.
Performance
Performance Overview
When a new record is added using the form at the bottom of the page, the XML
Performance Tuning Tips file is updated and the cached item must be recreated.
Measuring Performance
VB
The following code shows how to set a relative expiration policy. It inserts an
item that expires 20 minutes after it is last accessed. Note the use of
DateTime.MaxValue, which indicates that there is no absolute expiration policy
on this item.
VB
Section Summary
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Security ● Configuration section groups - ASP.NET configuration allows hierarchical grouping of sections for
Security Overview organizational purposes. A <sectionGroup> tag may appear inside a <configSections> tag or
Authentication & Authorization inside other <sectionGroup> tags. For example, ASP.NET section handlers all appear within the
<system.web> section group.
Windows-based Authentication
Forms-based Authentication
● Configuration sections - ASP.NET configuration settings are represented within configuration tag
Authorizing Users and Roles sections, also nested within a <configuration> tag (and optional section group tags). For each
User Account Impersonation configuration section, an appropriate section handler must be defined in the config hierarchy. For
Security and WebServices example, in the sample below, the tag <httpModules> is the configuration section that defines the
HTTP modules configuration data. The
System.Configuration.HttpModulesConfigurationHandler class is responsible for interpreting
Localization the content contained within the <httpModules> tag at run time. Note that both the section
handler definition and the section must have the same section group qualifier (in this case,
Internationalization Overview
<system.web>). Also note that tag names are case-sensitive and must be typed exactly as shown.
Setting Culture and Encoding Various attributes and settings for ASP.NET are also case-sensitive and will not be examined by the
Localizing ASP.NET Applications configuration runtime if the case does not match.
Working with Resource Files
<configuration>
Tracing <configSections>
Tracing Overview <sectionGroup name="system.web">
<section
Trace Logging to Page Output
name="httpModules"
Application-level Trace Logging type="System.Web.Configuration.HttpModulesConfigurationHandler,System.Web"
/>
</sectionGroup>
Debugging </configSections>
The SDK Debugger
<system.web>
<httpModules>
Performance <add
Performance Overview name="CookielessSession"
type="System.Web.SessionState.CookielessSessionModule,System.Web"
Performance Tuning Tips />
Measuring Performance <add
name="OutputCache"
type="System.Web.Caching.OutputCacheModule,System.Web"
ASP to ASP.NET Migration />
Migration Overview <add
name="Session"
Syntax and Semantics
type="System.Web.SessionState.SessionStateModule,System.Web"
Language Compatibility />
COM Interoperability <add
name="WindowsAuthentication"
Transactions
type="System.Web.Security.WindowsAuthenticationModule,System.Web"
/>
Sample Applications <add
name="FormsAuthentication"
A Personalized Portal
type="System.Web.Security.FormsAuthenticationModule,System.Web"
An E-Commerce Storefront />
A Class Browser Application <add
name="PassportAuthentication"
IBuySpy.com type="System.Web.Security.PassportAuthenticationModule,System.Web"
/>
Get URL for this page <add
name="UrlAuthorization"
type="System.Web.Security.UrlAuthorizationModule,System.Web"
/>
<add
name="FileAuthorization"
type="System.Web.Security.FileAuthorizationModule,System.Web"
/>
</httpModules>
</system.web>
</configuration>
By default, all configuration settings defined within the top-level <configuration> tag are applied to the
current directory location of the containing web.config file and to all of the child paths beneath it. You can
optionally apply configuration settings to specific child paths under the current config file by using the
<location> tag with an appropriately constraining path attribute. If the config file is the main machine.config
file, you can apply settings to specific virtual directories or applications. If the config file is a web.config file,
you can apply settings to a specific file, child directory, virtual directory, or application.
<configuration>
<location path="EnglishPages">
<system.web>
<globalization
requestEncoding="iso-8859-1"
responseEncoding="iso-8859-1"
/>
</system.web>
</location>
<location path="EnglishPages/OneJapanesePage.aspx">
<system.web>
<globalization
requestEncoding="Shift-JIS"
responseEncoding="Shift-JIS"
/>
</system.web>
</location>
</configuration>
In addition to specifying path information using the <location> tag, you can also specify security so that
settings cannot be overridden by another configuration file further down the configuration hierarchy. To lock
down a group of settings, you can specify an allowOverride attribute on the surrounding <location> tag
and set it to false. The following code locks down impersonation settings for two different applications.
<configuration>
</configuration>
Note that if a user tries to override these settings in another configuration file, the configuration system will
throw an error:
<configuration>
<system.web>
<identity userName="developer" password="loginpw" />
</system.web>
</configuration>
ASP.NET ships with a number of standard configuration section handlers that are used to process configuration
settings within web.config files. The following table provides brief descriptions of the sections, along with
pointers to more information.
<sessionState> Responsible for configuring the session state HTTP module. For
more information, see the Managing Application State section of
this tutorial.
<globalization> Responsible for configuring the globalization settings of an
application. For more information, see the Localization section of
this tutorial.
<compilation> Responsible for all compilation settings used by ASP.NET. For
more information, see the Business Objects and Debugging
sections of this tutorial.
<trace> Responsible for configuring the ASP.NET trace service. For more
information, see the Tracing section of this tutorial.
Configuration The ConfigurationSettings object exposes a special AppSettings property that can be used to retrieve these settings:
Configuration Overview
Configuration File Format
Dim dsn As String = ConfigurationSettings.AppSettings("pubs")
Retrieving Configuration
VB
Deployment
Deploying Applications
The following sample illustrates this technique.
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
VB Config1.aspx
Forms-based Authentication
Authorizing Users and Roles [Run Sample] | [View Source]
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
http://intranet/hr/compensation/ c:\inetpub\wwwroot\compensation
Deployment
Deploying Applications
Resolving Class References to Assemblies
Using the Process Model
Handling Errors
Assemblies are the unit of class deployment in the common language runtime. Developers writing
.NET Framework classes using Visual Studio.NET version 7.0 will produce a new assembly with each
Visual Studio project that they compile. Although it is possible to have an assembly span multiple
Security
portable executable (PE) files (several module DLLs), Visual Studio.NET will, by default, compile all
Security Overview assembly code into a single DLL (1 Visual Studio.NET project = 1 .NET Framework assembly = 1
Authentication & Authorization physical DLL).
Windows-based Authentication
Forms-based Authentication You can use an assembly on a computer by deploying it into an assembly cache. The assembly cache
can be either global to a computer or local to a particular application. Only code intended to be
Authorizing Users and Roles shared across multiple applications should be placed in the global system assembly cache. Code
User Account Impersonation specific to a particular application, such as most Web application logic, should be deployed in the
application's local assembly cache. One advantage of deploying an assembly within an application's
Security and WebServices local assembly cache is that only code within that application can access it. (This is a nice feature for
scenarios involving ISPs.) It also facilitates side-by-side versioning of the same application because
classes are private to each application version instance.
Localization
Internationalization Overview
An assembly can be deployed into an application's local assembly cache by simply copying,
Setting Culture and Encoding XCOPYing, or FTPing the appropriate files into a directory that has been marked as an "assembly
Localizing ASP.NET Applications cache location" for that particular application. No additional registration tool must be run once the
Working with Resource Files appropriate files are copied, and no reboot is necessary. This eliminates some of the difficulties
currently associated with deploying COM components within ASP applications (currently, an
administrator must log on to the Web server locally and run Regsvr32.exe).
Tracing
Tracing Overview By default, an ASP.NET application is automatically configured to use the \bin subdirectory, located
Trace Logging to Page Output immediately under the application root, as its local assembly cache. The \bin directory is also
configured to deny any browser access so that a remote client cannot download and steal the code.
Application-level Trace Logging
The following example shows a possible directory layout for an ASP.NET application, where the \bin
directory is immediately under the application root.
Debugging
The SDK Debugger C:\inetpub\wwwroot Web.cfg Default.aspx \bin <= Application assembly
cache directory MyPages.dll MyBizLogic.dll \order SubmitOrder.aspx
OrderFailed.aspx \img HappyFace.gif
Performance ASP.NET Application Startup and Class Resolution
Performance Overview
Performance Tuning Tips ASP.NET applications are lazily constructed the first time a client requests a URL resource from them.
Measuring Performance Each ASP.NET application is launched within a unique application domain (AppDomain)--a new
common language runtime construct that enables process hosts to provide extensive code, security,
and configuration isolation at run time.
ASP to ASP.NET Migration
Migration Overview
ASP.NET is responsible for manually creating an application domain when a new application is
Syntax and Semantics started. As part of this process, ASP.NET provides configuration settings for the common language
Language Compatibility runtime to use. These settings include:
COM Interoperability
Transactions ● The directory paths that make up the local assembly cache. (Note: It is the .NET Framework
application domain isolation architecture that allows each application to maintain its own
local assembly cache.)
Sample Applications ● The application's security restrictions (what the application can access on the system).
A Personalized Portal
An E-Commerce Storefront Because ASP.NET does not have compile-time knowledge of any applications you write on top of it, it
cannot use static references to resolve and reference application code. Instead, ASP.NET must use a
A Class Browser Application
dynamic class/assembly resolution approach to make the transition from the ASP.NET runtime into
IBuySpy.com application code.
Get URL for this page ASP.NET configuration and page activation files will enable you to dynamically reference a target-
compiled .NET Framework class by specifying an assembly and class name combination. The string
format for this union follows the pattern
classname, assemblyname
. The common language runtime can then use this simple string reference to resolve and load the
appropriate class.
Code Replacement
.NET Framework assemblies are typically compiled and deployed into a Windows DLL-based PE
format. When the common language runtime's loader resolves a class implemented within this type
of assembly, it calls the Windows LoadLibrary routine on the file (which locks its access on disk), and
then maps the appropriate code data into memory for run-time execution. Once loaded, the DLL file
will remain locked on disk until the application domain referencing it is either torn down or manually
recycled.
Although ASP.NET cannot prevent the common language runtime from locking a loaded assembly
DLL on disk, it can support you by ensuring that the physical DLLs in a Web application's private
assembly cache are never actually loaded by the runtime. Instead, shadow copies of the assembly
DLLs are made immediately prior to their use. These shadow assemblies--not the original files--are
then locked and loaded by the runtime.
Because the original assembly files always remain unlocked, you are free to delete, replace, or
rename them without cycling the Web server or having to use a registration utility. FTP and similar
methods work just fine. ASP.NET maintains an active list of all assemblies loaded within a particular
application's application domain and uses file-change monitoring code to watch for any updates to
the original files.
Section Summary
1. ASP.NET applications are identified by a unique URL and live in the file system of the Web
server.
2. ASP.NET can use shared assemblies, which reside in the global cache, and application-
specific assemblies, which reside in the \bin directory of the application's virtual root.
3. ASP.NET applications run in the context of application domains (AppDomains), which
provide isolation and enforce security restrictions.
4. Classes can be dynamically referenced using "classname, assemblyname".
5. ASP.NET uses shadow copies of assembly files to avoid locking, it and monitors the files so
that changes are picked up immediately.
<processModel
ASP.NET Web Applications enable="true"
Application Overview timeout="infinite"
idleTimeout="infinite"
Using the Global.asax File
shutdownTimeout="0:00:05"
Managing Application State requestLimit="infinite"
HttpHandlers and Factories requestQueueLimit="5000"
memoryLimit="80"
webGarden="false"
Cache Services cpuMask="0xffffffff"
Caching Overview userName=""
password=""
Page Output Caching logLevel="errors"
Page Fragment Caching clientConnectedCheck="0:00:05"
Page Data Caching />
Handling Errors trigger a process recycle. You can control the conditions that trigger a
process restart by using the configuration settings described in the
following table.
Security
Security Overview
Setting Description
Authentication & Authorization
Windows-based Authentication requestQueueLimit Handles deadlock conditions. The
DWORD value is set to the
Forms-based Authentication maximum allowed number of
Authorizing Users and Roles requests in the queue, after which
User Account Impersonation the worker process is considered
to be misbehaving. When the
Security and WebServices number is exceeded, a new
process is launched and the
requests are reassigned. The
Localization default is 5000 requests.
Internationalization Overview
memoryLimit Handles memory leak conditions.
Setting Culture and Encoding
The DWORD value is set to the
Localizing ASP.NET Applications percentage of physical memory
Working with Resource Files that the worker process can
consume before it is considered to
be misbehaving. When that
Tracing percentage is exceeded, a new
Tracing Overview process is launched and the
requests are reassigned. The
Trace Logging to Page Output
default is 80%.
Application-level Trace Logging
shutdownTimeout Specifies the amount of time the
worker process has to shut itself
Debugging down gracefully (string value in
The SDK Debugger hr:min:sec format). When the
time out expires, the ASP.NET
ISAPI shuts down the worker
Performance process. The default is
"00:00:05".
Performance Overview
Performance Tuning Tips
Measuring Performance Proactive Process Recycling
ASP to ASP.NET Migration Proactive process recycling restarts the worker process periodically even if
the process is healthy. This can be a useful way to prevent denials of
Migration Overview
service due to conditions the process model is unable to detect. A process
Syntax and Semantics can be restarted after a specific number of requests or after a time-out
Language Compatibility period has elapsed.
COM Interoperability
Transactions Setting Description
timeout String value in hr:min:sec format that
Sample Applications configures the time limit after which a
A Personalized Portal new worker process will be launched to
take the place of the current one. The
An E-Commerce Storefront default is infinite, a keyword indicating
A Class Browser Application that the process should not be restarted.
IBuySpy.com idleTimeout String value in hr:min:sec format that
configures the amount of inactivity, after
Get URL for this page which the worker process is automatically
shut down. The default is infinite, a
keyword indicating that the process
should not be restarted.
The process model can write events to the Windows event log when
process cycling occurs. This is controlled by the logLevel attribute in the
<processModel> configuration section.
Setting Description
logLevel Controls that process cycling events are
logged to the event log. The value can be:
When a cycling event occurs, if logging is enabled for that event, the
following events are written to the application event log.
Setting Description
webGarden Controls CPU affinity. True indicates that
processes should be affinitized to the
corresponding CPU. The default is False.
Web gardening has some side effects that you should be aware of:
Section Summary
Deployment
<configuration>
Deploying Applications
<system.web>
Using the Process Model <customErrors defaultRedirect="genericerror.htm" mode="remoteonly" />
Handling Errors </system.web>
</configuration>
Security
This configuration enables local clients to see the default ASP.NET detailed error pages but redirects remote clients to a custom page,
Security Overview genericerror.htm. This page could be an .aspx page as well. ASP.NET passes the path of the page on which the error occurred to the
Authentication & Authorization error page as a QueryString argument. Note that if the execution of the error page generates an error, a blank page is sent back to the
Windows-based Authentication remote client.
Forms-based Authentication
Authorizing Users and Roles <%@ Page Language="VB" Description="Error page"%>
User Account Impersonation
<html>
Security and WebServices
<head>
<title>Error page</title>
Localization </head>
Internationalization Overview <body>
Setting Culture and Encoding <h1>Error page</h1>
Error originated on: <%=Request.QueryString("ErrorPage") %>
Localizing ASP.NET Applications
</body>
Working with Resource Files </html>
Tracing VB
Tracing Overview
Trace Logging to Page Output Note: Only files mapped to the XSPISAPI.dll extension in IIS generate these errors. Files not served through the XSPISAPI.dll are not
Application-level Trace Logging processed by ASP.NET and generate IIS errors. See the IIS documentation for information about configuring IIS custom errors.
The following table describes the configuration attributes and values for the <customerrors> tag.
Debugging
The SDK Debugger
Attribute Description
Performance Mode Indicates whether custom errors are enabled, disabled, or only shown to remote
Performance Overview computers. Values: On, Off, RemoteOnly (default).
ASP to ASP.NET Migration The Mode attribute determines whether errors are shown to local clients, remote clients, or both. The effects of each setting are
Migration Overview described in the following table.
Syntax and Semantics
Language Compatibility Mode Local host request Remote host request
COM Interoperability
On Custom error page. Custom error page.
Transactions
Off ASP.NET error page. ASP.NET error page.
VB Custom1.aspx
In addition to redirecting to a common page for all errors, you can also assign specific error pages to specific error status codes. The
<customerrors> configuration section supports an inner <error> tag that associates HTTP status codes with custom error pages. For
example:
<configuration>
<system.web>
<customerrors mode="remoteonly" defaultredirect="/genericerror.htm">
<error statuscode="500" redirect="/error/callsupport.htm"/>
<error statuscode="404" redirect="/error/notfound.aspx"/>
<error statuscode="403" redirect="/error/noaccess.aspx"/>
</customerrors>
</system.web>
</configuration>
The following table describes the attributes and values for the <error> tag.
Attribute Description
StatusCode HTTP status code of errors for which the custom error page should be used. Examples:
403 Forbidden, 404 Not Found, or 500 Internal Server Error.
Redirect URL to which the client browser should be redirected if an error occurs.
The following example demonstrates how to use the <error> tag. Note that the example specifies an .aspx page for "File Not Found"
errors so that the missing page URL passed via the QueryString can be printed.
VB Custom1.aspx
You can also handle errors in code, at either the page level or the application level. The Page base class exposes a Page_Error method,
which you can override in your pages. The method is called whenever an uncaught exception is thrown at run time.
Response.Write(message)
End Sub
</script>
VB
VB Error2.aspx
You could do something useful in this method, like sending an e-mail to the site administrator saying that the page failed to execute
properly. ASP.NET provides a set of classes in the System.Web.Mail namespace for just this purpose. To import this namespace, use an
@Import directive at the top of your page, as follows:
You can then use the MailMessage and SmtpMail objects to programmatically send e-mail.
VB
The following sample shows how to send a mail message in response to a page error.
Note: This sample does not actually send mail unless you have configured the SMTP mail service on your machine. For more information
about the SMTP mail service, consult the IIS documentation.
VB Error3.aspx
In addition to handling errors at the page level, you might want to handle errors at the application level. To do this, use the
Application_Error event in Global.asax. This event occurs for any unhandled exception thrown within the application.
VB
The System.Diagnostics namespace provides classes for writing to the Windows event log. To use this namespace in your pages, you
must first import the namespace, as follows:
The EventLog class encapsulates the log itself. It provides static methods for detecting or creating logs and can be instantiated to write
log entries from code. The following example shows this functionality within the Application_Error method of Global.asax. Whenever an
unhandled exception occurs in the application, an entry containing the error message and stack trace is made to the application log.
End Sub
VB
The complete source code for the preceding example follows. Note that this code is disabled so that it cannot run here, to prevent entries
VB Global.asax
[View Source]
Section Summary
1. Errors are divided into four categories: configuration errors, parser errors, compilation errors, and run-time errors.
2. By default, the information shown for a run-time error is the call stack (the chain of procedure calls leading up to the exception).
If debug mode is enabled, ASP.NET displays the line number in source code where the run-time error originated.
3. ASP.NET enables you to specify whether errors are shown to local clients, to remote clients, or to both. By default, errors are
only shown to local clients (clients on the same computer as the server). You can also specify a custom error page to redirect
clients to if an error occurs.
4. In addition to redirecting to a common page for all errors, you can also assign specific error pages to specific error status codes.
The <customerrors> configuration section supports an inner <error> tag for associating HTTP status codes with custom
error pages.
5. You can also handle errors in code, at either the page level or application level. The Page base class exposes a HandleError
method, which you can override in your pages. The method will be called whenever an uncaught exception is thrown at run
time.
6. The System.Web.Mail namespace exposes classes for programmatically sending e-mail. This is useful for notifying an
administrator when an error occurs.
7. In addition to handling errors at the page level, you can use the Application_Error event in Global.asax to handle errors at the
application level. This event will occur for any unhandled exception thrown within the application.
8. The System.Diagnostics namespace provides classes for writing to the Windows event log.
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Services To illustrate the difference, consider a scenario in which an application is
Introducing Web Services configured to allow anonymous access using the IUSR_MYMACHINE
account. When a request for an ASP.NET page (such as "/default.aspx") is
Writing a Simple Web Service
authorized, a check is done against the ACLs on that file (for example,
Web Service Type Marshalling "c:\inetpub\wwwroot\default.aspx") to see whether the IUSR_MYMACHINE
Using Data in Web Services account has permission to read the file. If it does, then access is
authorized. File authorization is performed automatically.
Using Objects and Intrinsics
The WebService Behavior
For URL authorization, the anonymous user is checked against the
HTML Pattern Matching
configuration data computed for the ASP.NET application. If access is
allowed for the requested URL, the request is authorized. In this case,
ASP.NET checks to see whether the anonymous user has access to
ASP.NET Web Applications
/Default.aspx (that is, the check is done against the URL itself, not against
Application Overview the file that the URL ultimately resolves to).
Using the Global.asax File
Managing Application State This might seem a subtle distinction, but it enables applications to use
HttpHandlers and Factories authentication schemes likes forms-based authentication or Passport
authentication, in which the users do not correspond to a machine or
domain account. It also enables authorization against virtual resources, for
Cache Services which there is no physical file underlying the resource. For example, an
Caching Overview application could choose to map all requests for files ending in .stk to a
handler that serves stock quotes based on variables present in the query
Page Output Caching
string. In such a case, there is no physical .stk against which to do ACL
Page Fragment Caching checks, so URL authorization is used to control access to the virtual
Page Data Caching resource.
Handling Errors To activate an ASP.NET authentication service, you must configure the
<authentication> element in the application's configuration file. This
element can have any of the values listed in the following table.
Security
Security Overview
Value Description
Authentication & Authorization
Windows-based Authentication None No ASP.NET authentication services are active.
Note that IIS authentication services can still be
Forms-based Authentication present.
Authorizing Users and Roles
Windows ASP.NET authentication services attach a
User Account Impersonation WindowsPrincipal
Security and WebServices (System.Security.Principal.WindowsPrincipal)
to the current request to enable authorization
against NT users or groups.
Localization
Forms ASP.NET authentication services manage cookies
Internationalization Overview
and redirect unathenticated users to a logon page.
Setting Culture and Encoding This is often used in conjunction with the IIS
Localizing ASP.NET Applications option to allow anonymous access to an
application.
Working with Resource Files
Passport ASP.NET authentication services provide a
convenient wrapper around the services provided
Tracing by the Passport SDK, which must be installed on
Tracing Overview the machine.
Trace Logging to Page Output
Application-level Trace Logging
For example, the following configuration file enables forms-based (cookie)
authentication for an application:
Debugging
The SDK Debugger <configuration>
<system.web>
<authentication mode="Forms"/>
Performance </system.web>
Performance Overview </configuration>
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview VB Windows Authentication
Page Output Caching
Page Fragment Caching
[Run Sample] | [View Source]
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms An application has to be configured to use forms-based authentication by setting <authentication> to Forms, and denying
Introducing Web Forms access to anonymous users. The following example shows how this can be done in the Web.config file for the desired
Working with Server Controls application:
Tracing page. When the sample is run, it requests the Default.aspx page. Unauthenticated requests are redirected to the logon page
(Login.aspx), which presents a simple form that prompts for an e-mail address and a password. (Use
Tracing Overview
Username="[email protected]" and Password="password" as credentials.)
Trace Logging to Page Output
Application-level Trace Logging After validating the credentials, the application calls the following:
Debugging
FormsAuthentication.RedirectFromLoginPage(UserEmail.Value, PersistCookie.Checked)
The SDK Debugger
VB
Performance
Performance Overview
This redirects the user back to the originally requested URL. Applications that do not want to perform the redirection can call
Performance Tuning Tips either FormsAuthentication.GetAuthCookie to retrieve the cookie value or FormsAuthentication.SetAuthCookie to
Measuring Performance attach a properly encrypted cookie to the outgoing response. These techniques can be useful for applications that provide a
logon UI embedded in the containing page or that want to have more control over where users are redirected. Authentication
cookies can either be temporary or permanent ("persistent"). Temporary cookies last only for the duration of the current
ASP to ASP.NET Migration browser session. When the browser is closed, the cookie is lost. Permanent cookies are saved by the browser and are sent
Migration Overview back across browser sessions unless explicitly deleted by the user.
Syntax and Semantics
Language Compatibility
COM Interoperability
Transactions
Sample Applications
A Personalized Portal VB Forms-Based/Cookie Authentication
An E-Commerce Storefront
A Class Browser Application [Run Sample] | [View Source]
IBuySpy.com
The authentication cookie used by forms authentication consists of a linear version of the
System.Web.Security.FormsAuthenticationTicket class. The information includes the user name (but not the password),
Get URL for this page
the version of forms authentication used, the date the cookie was issued, and a field for optional application-specific data.
Application code can revoke or remove authentication cookies using the FormsAuthentication.SignOut method. This
removes the authentication cookie regardless of whether it is temporary or permanent.
It is also possible to supply forms-based authentication services with a list of valid credentials using configuration, as shown in
the following example:
<authentication>
<credentials passwordFormat="SHA1" >
<user name="Mary" password="GASDFSA9823598ASDBAD"/>
<user name="John" password="ZASDFADSFASD23483142"/>
</credentials>
</authentication>
The application can then call FormsAuthentication.Authenticate, supplying the username and password, and ASP.NET will
verify the credentials. Credentials can be stored in cleartext, or as SHA1 or MD5 hashes, according to the following values of
the passwordFormat attribute:
Cache Services
Caching Overview <authorization>
<deny users="?" />
Page Output Caching
</authorization>
Page Fragment Caching
Page Data Caching
URL authorization is computed hierarchically and the rules used to
determine access are as follows:
Configuration
Configuration Overview ● Rules relevant to the URL are collected from across the hiearchy
and a merged list of rules is constructed.
Configuration File Format
● The most recent rules are placed at the head of the list. This
Retrieving Configuration means that configuration in the current directory is at the head of
the list, followed by configuration in the immediate parent, and so
on, up to the top-level file for the computer.
Deployment ● Rules are checked until a match is found. If the match is
Deploying Applications allowable, access is granted. If not, access is disallowed.
Using the Process Model
Handling Errors What this means is that applications that are not interested in inheriting
their configuration should explicitly configure all of the possiblities relevant
to their applications.
Security
Security Overview
The default top-level Web.config file for a given computer allows access to
Authentication & Authorization all users. Unless an application is configured to the contrary (and assuming
Windows-based Authentication that a user is authenticated and passes the file authorization ACL check),
access is granted.
Forms-based Authentication
Authorizing Users and Roles
When roles are checked, URL authorization effectively marches down the
User Account Impersonation list of configured roles and does something that looks like the following
Security and WebServices pseudocode:
What this means for your application is that you use your own class that
Tracing
implements System.Security.Principal.IPrincipal to provide your own
Tracing Overview role-mapping semantics, as explained in Windows-based Authentication.
Trace Logging to Page Output
Application-level Trace Logging The following sample uses forms-based authentication services. It explicitly
denies access to [email protected] and anonymous users. Try logging
into the sample with Username="[email protected]" and
Debugging Password="password". Access will be denied and you will be redirected
The SDK Debugger back to the logon page. Now log on as
Username="[email protected]" and Password="password". You will
see that access is granted.
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Imports System.Web.Services
Configuration Imports System
Configuration Overview
Class SecureService : Inherits WebService
Configuration File Format
Retrieving Configuration
Public Function SecureTest As String
Return "Hello from the secure web service"
Deployment End
End Class
Deploying Applications
Using the Process Model
VB
Handling Errors
You could require basic authentication for this service by making appropriate settings in IIS as follows:
Security
Security Overview
1. Open the IIS MMC console.
Authentication & Authorization
Windows-based Authentication
Start->Run "inetmgr"
Forms-based Authentication
Authorizing Users and Roles 2. In the left pane, expand the tree to find your virtual directory.
User Account Impersonation 3. In the right pane, right-click Secureservice.asmx, and choose Properties.
Security and WebServices 4. Select the File Security tab. Under Anonymous Access and Authentication Control, click Edit.
The base WebService proxy class provides two properties, Username and Password, that you can use to
Tracing specify the credentials with which to connect to the remote Web service. These must be set to valid Windows
Tracing Overview credentials on the Web service's computer or domain.
Trace Logging to Page Output
Application-level Trace Logging
<%@ Import Namespace="SecureService" %>
<html>
Debugging <script language="VB" runat="server">
The SDK Debugger
Public Sub Page_Load(sender As Object, e As EventArgs)
Sample Applications
VB
A Personalized Portal
An E-Commerce Storefront
The base WebService class also provides a User property of type System.Security.Principal.IPrincipal,
A Class Browser Application which you can use to retrieve information about the client user. Again, you can authorize access to your Web
IBuySpy.com service using the Authorization section in the ASP.NET configuration system.
Get URL for this page Custom Authentication and Authorization with Soap Headers
Windows authentication works well for intranet scenarios, in which you are authenticating against a user in your
own domain. On the Internet, however, you probably want to perform custom authentication and authorization,
perhaps against a SQL database. In that case, you should pass custom credentials (such as the username and
password) to your service and let it handle the authentication and authorization itself.
A convenient way to pass extra information along with a request to a Web service is a SOAP header. To do this,
define a class that derives from SOAPHeader in your service, and then declare a public field of your service as
that type. This is exposed in the public contract for your service, and made available to the client when the proxy
is created from WebServiceUtil.exe, as in the following example:
Imports System.Web.Services
Imports System.Web.Services.Protocols
VB
Each WebMethod in your service can define a set of associated headers using the SoapHeader custom
attribute. By default, the header is required, but it is possible to define optional headers as well. The
SoapHeader attribute specifies the name of a public field or property of the Client or Server class (referred to
as a Headers property in this topic). WebServices sets the value of a Headers property before the method is
called for input headers, and retrieves the value when the method returns for output headers. For more
information about output or optional headers see the .NET Framework SDK documentation.
If (sHeader Is Nothing)
Return "ERROR: Please supply credentials"
Else
Return "USER: " & sHeader.Username
End If
End Function
VB
A client then sets the header on the proxy class directly before making a method call that requires it, as shown in
the following example:
VB
VB SoapHeaders.aspx
Section Summary
1. Securing your Web services on the server using Windows authentication follows exactly the same model
as described for .aspx page.
2. You can also programmatically set Windows credentials using the Username and Password properties
on the WebService proxy class.
3. Lastly, you can do custom authentication by passing credential information as SOAPHeaders, along
with a SOAP request to the method that requires it.
When creating ASP.NET pages or code-behind modules, developers can use the .NET Framework class
Deployment library to provide features necessary for a globalized environment or to localize the application. ASP.NET
Deploying Applications also provides configuration settings to ease development and administration of ASP.NET applications.
Using the Process Model
Handling Errors ASP.NET utilizes configuration files to provide directory settings that are usually also inherited by
subdirectories. Each file can contain a Globalization section in which you can specify default encodings
and cultures. Values are valid if they are accepted by the related classes Encoding and CultureInfo.
Security You can find more information about the Encoding and CultureInfo classes in the .NET Framework
Security Overview SDK.
Authentication & Authorization
Windows-based Authentication <configuration> <system.web> <globalization fileEncoding="utf-8"
requestEncoding="utf-8" responseEncoding="utf-8" culture="en-US"
Forms-based Authentication
uiCulture="de-DE" /> </system.web> </configuration>
Authorizing Users and Roles Within the Globalization section, the value of fileEncoding determines the way in which ASP.NET
User Account Impersonation encodes .aspx files; the values of requestEncoding and responseEncoding determine the way in
Security and WebServices which request data and response data are encoded, respectively.
The attributes of the Globalization section in the Web.config file can also be specified on the Page
Localization
directive (with the exception of fileEncoding, because it applies to the file itself). These settings are
Internationalization Overview only valid for a specific page and override the settings of the Web.config file. The following sample
Setting Culture and Encoding directive specifies that the page should use French culture settings and UTF-8 encoding for the response:
Localizing ASP.NET Applications
Working with Resource Files <%@Page Culture="fr-FR" UICulture="fr-FR" ResponseEncoding="utf-8"%>
Note: Within a page, the culture values can be changed programmatically by setting
Tracing
Thread.CurrentCulture and Thread.UICulture.
Tracing Overview
Trace Logging to Page Output
Section Summary
Application-level Trace Logging
1. ASP.NET supports a wide range of encodings for .aspx files, request data, and response data.
Debugging 2. Support for locale-dependent data is provided by the CultureInfo class, where the two values
The SDK Debugger CurrentCulture and CurrentUICulture are tracked.
3. Internationalization settings can be configured for each computer, for each directory, and for
each page.
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
The following sample demonstrates how to use different national character sets on the same page. The page contains
ASP.NET Web Applications English text (ASCII), German text with one umlaut character, Japanese text, and Hebrew text (uses dir="rtl"). The
Application Overview source for the page itself is stored with codepage-neutral UTF-8 encoding, as specified in Web.config.
Using the Global.asax File
Managing Application State <configuration> <system.web> <globalization fileEncoding="utf-8" ... />
</system.web> </configuration>
HttpHandlers and Factories
Using CultureInfo
Configuration
Configuration Overview
Code on ASP.NET pages can use the CultureInfo class to supply localized settings. In the following sample, the
Configuration File Format properties of a culture, initially the culture of the server, is set as follows:
Retrieving Configuration
culture = CultureInfo.CurrentCulture
Deployment
Deploying Applications
VB
Using the Process Model
Handling Errors
If the name of a new culture is submitted, it will be used instead:
Security
Security Overview culture = New CultureInfo(NewCulture.Value)
Authentication & Authorization
Windows-based Authentication VB
Forms-based Authentication
Authorizing Users and Roles The submitted culture is set to be the new default value and some properties are displayed:
User Account Impersonation
Security and WebServices
<%
Thread.CurrentThread.CurrentCulture = culture
Localization %>
...
Internationalization Overview
Current Culture is <%= CultureInfo.CurrentCulture.Name %>
Setting Culture and Encoding (<%=Thread.CurrentThread.CurrentCulture.Name%>),
VB
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
VB i18n_cultureinfo.aspx
Code on ASP.NET pages can also use the RegionInfo class to supply regional settings. In the following sample, the
ASP to ASP.NET Migration properties of a region are displayed. The initial display is the server's default region.
Migration Overview
Syntax and Semantics
Language Compatibility region = RegionInfo.CurrentRegion
...
COM Interoperability
Current region is <%= region.EnglishName %> (<%=region.DisplayName%>),
Transactions currency is <%= region.CurrencySymbol %>.
Sample Applications VB
A Personalized Portal
An E-Commerce Storefront On subsequent requests the entered region is displayed:
A Class Browser Application
IBuySpy.com
region = New RegionInfo(NewRegion.Value)
VB I18N_Regional.aspx
Section Summary
1. ASP.NET can use pages that are stored with UTF-8 encoding to support different national characters.
2. The CultureInfo class can be set and used programmatically to localize pages.
3. The RegionInfo class can be used to provide regional settings on ASP.NET pages.
Cache Services An improvement over the simple copy-and-translate approach is to use controls to pick up the culture of
Caching Overview the main page. In the following sample, the image of the flag and the search bar are controls.
Page Output Caching Depending on the culture of the hosting page, they render different content. To support this, the
UICulture attribute is also added to each page:
Page Fragment Caching
Page Data Caching
<%@Page Culture="de-DE" UICulture="de-DE" Language="VB" %>
Configuration
Configuration Overview VB
Configuration File Format
Retrieving Configuration The flag control (Flag.ascx), for example, just uses the culture name to build the Src attribute of an
<img> tag:
Deployment
Deploying Applications <%@Import Namespace="System.Globalization"%>
Using the Process Model
<script runat="Server" Language="VB">
Handling Errors Overrides Protected Sub Render(writer As HtmlTextWriter)
FlagImage.Src = "../../flags/" & CultureInfo.CurrentCulture.Name & ".jpg"
FlagImage.Alt = CultureInfo.CurrentCulture.NativeName
Security MyBase.Render(writer)
Security Overview End Sub
Authentication & Authorization </script>
Windows-based Authentication <img runat="server" id="FlagImage" />
Forms-based Authentication
Authorizing Users and Roles VB
Localization
Internationalization Overview Sub LocalizeSearchText()
Select Case String.Intern(CultureInfo.CurrentUICulture.Name))
Setting Culture and Encoding
Case "en-US"
Localizing ASP.NET Applications SearchText.Text = "Clinton"
Working with Resource Files SearchButton.Text = "Search"
Case "de-DE"
Tracing ...
Case "ja-JP"
Tracing Overview
...
Trace Logging to Page Output Case Else
Application-level Trace Logging SearchButton.Text = "Search"
End Select
End Sub
Debugging
The SDK Debugger VB
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
1. ASP.NET pages support Culture and UICulture attributes to support independent localized
A Personalized Portal pages.
An E-Commerce Storefront 2. Controls on pages can pick the culture of the page and can render culture-dependent content.
A Class Browser Application
IBuySpy.com
Cache Services To change the initial language setting, you can use differently localized clients or change the language setting on your browser. For
Caching Overview Internet Explorer 5.x, for example, select Tools -> Internet Options from the menu and click the Languages button at the
bottom. In the following dialog you can add additional languages and define their priority. For simplicity the sample always chooses
Page Output Caching the first entry.
Page Fragment Caching
Page Data Caching After the page is loaded the first time, the user can select another culture in the drop-down list control MyUICulture. If a valid
culture is selected, this value overrides the setting acquired from UserLanguages:
Configuration
Configuration Overview
Dim SelectedCulture As String = MyUICulture.SelectedItem.Text
Configuration File Format If Not(SelectedCulture.StartsWith("Choose")) Then
Retrieving Configuration ' If another culture was selected, use that instead.
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(Request.UserLanguages(0))
Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture
Deployment End If
Deploying Applications
Using the Process Model VB
Handling Errors
In the previous code, the use of the CreateSpecificCulture method is required because you cannot set the current CultureInfo of your
Thread to a neutral culture. However, the string available from the UserLanguages setting may be a neutral culture. Therefore, the
Security CreateSpecificCulture method takes this string, and makes an appropriate CultureInfo from it.
Security Overview
Authentication & Authorization Also, in the Global.asax file, a ResourceManager instance with application scope is initialized. This way, resources are only loaded
Windows-based Authentication once per application. Because resources are read-only, no lock contention should occur.
Forms-based Authentication
Authorizing Users and Roles
Public Sub Application_Start()
User Account Impersonation Application("RM") = New ResourceManager("articles", _
Security and WebServices Server.MapPath("resources") + Environment.DirectorySeparatorChar, _
Nothing)
End Sub
Localization
Internationalization Overview
VB
Setting Culture and Encoding
Localizing ASP.NET Applications The resource manager then can easily be used on the page. The greeting string is simply localized by:
Working with Resource Files
<%=rm.GetString("greeting")%>
Tracing
Tracing Overview
Debugging
The SDK Debugger
global.asax VB news.aspx
Performance
Performance Overview [View Source] [Run Sample] | [View Source]
Performance Tuning Tips
Measuring Performance
Using Satellite Assemblies
ASP to ASP.NET Migration If you look at the structure of the directories in the sample in the previous section, you see that the resources for the sample are
Migration Overview loaded not from DLLs, but from .resource files. Although this is certainly one solution, you can also compile your code into satellite
Syntax and Semantics assemblies. A satellite assembly is defined as an assembly with resources only, no executable code. For more information on satellite
Language Compatibility assemblies, see the section How Do I... Create Resources? .
COM Interoperability
Transactions The benefit of using satellite assemblies becomes apparent when you realize that .resources files are not shadow-copied because they
are not DLLs, and therefore Web sites can encounter locking problems when using them. The alternative is to use a parallel main
assembly for application resources. The main assembly contains fallback resources; the satellites (one per culture) contain localized
Sample Applications resources. The main assembly is installed into the \bin directory, and the satellites are stored in the usual xx-XX subdirectories (see
How Do I... Create Resources? ). Being assemblies, they are shadow-copied and are not locked. To create an assembly-aware .asp
A Personalized Portal
application:
An E-Commerce Storefront
A Class Browser Application
1. Create the resource DLL and copy it into the \bin directory. For example:
IBuySpy.com
The "y" refers to whether the blob should be visible to other assemblies. Since the ResourceManager lives in Mscorlib and
is a different assembly from "qq", the .resources file must be publically visible. The "y" says whether this should be public.
2. On your page, include the following statement. Note that the name of the assembly here is in the System.Reflection
namespace defined in Mscorlib (which is always referenced for you when compiling):
<%
Dim a As Assembly = Assembly.Load("qq")
Dim rm As ResourceManager = New ResourceManager("qq", a)
Response.Write(rm.GetString("key"))
%>
VB
3. Compile each satellite resource into its own assembly, placing it into the correct required directory structure within the /bin
directory:
Substitute the code for the culture into which you are localizing for en-US. Remember that the /c: tag is the culture
specifier.
After the DLLs are in the right locations (/bin and /bin/en-US in the above samples), the resources can be retrieved appropriately.
Note that everything gets shadow-copied by assembly cache and thus is replaceable, avoiding potential locking scenarios.
Compiled code-behind controls can also use satellite assemblies to supply localized content. From a deployment perspective, this is an
especially good thing, because satellite assemblies can be version-independent from the code. As a result, support for additional
languages can be provided just by copying the module of the satellite to the server, and no code change is required.
The following sample contains the LocalizedButton control in the assembly LocalizedControls (module LocalizedControls.dll). On
the page Showcontrols.aspx, the compiled control is registered and used later on:
The LocalizedButton control stores a ResourceManager instance, which is shared by all instances of LocalizedButton.
Whenever a control is rendered, the value of the Text property is replaced with the localized version:
True )
...
Overrides Protected Sub Render (writer As HtmlTextWriter)
Text = ResourceFactory.RManager.GetString(Text)
base.Render(writer)
End Sub
VB
The ResourceManager instance is responsible for resolving the key to a localized resource. If a satellite assembly with the correct
culture is not available and no related culture is found, the neutral resource of the main assembly is used ("en-us" -> "en" ->
neutral). Support for another language is simply granted by copying the module file for the new satellite assembly in place.
Section Summary
1. ASP.NET pages can utilize the resource classes to isolate localizable content in resources, which are selected at runtime.
2. A good alternative is to use satellite assemblies rather than the intermediate .resources files for loading your resources, since
this can avoid locking issues.
3. Compiled controls can contain resources of their own and will select the correct localized content, depending on the
UICulture of the hosting page.
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Deployment
Deploying Applications If Trace.IsEnabled Then
Using the Process Model For i=0 To ds.Tables("Categories").Rows.Count-1
Trace.Write("ProductCategory",ds.Tables("Categories").Rows(i)(0).ToString())
Handling Errors
Next
End if
Security
Security Overview VB
Authentication & Authorization
Windows-based Authentication The following example shows the use of Trace.Write and Trace.Warn to output debugging statements. Also
Forms-based Authentication note the use of the Trace.IsEnabled property to conditionally run extra debugging code. In this example, the
trace information has been sorted by category.
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing VB Trace2.aspx
Tracing Overview
Trace Logging to Page Output [Run Sample] | [View Source]
Application-level Trace Logging
ASP.NET also provides a way to enable tracing for the entire application, not just a single page. For more about
application-level tracing, click here.
Debugging
The SDK Debugger
Section Summary
Performance
Performance Overview 1. Page-level tracing is enabled using a Trace="true" attribute on the top-level Page directive.
2. Page-level tracing enables you to write debugging statements as part of a page's client output. Trace
Performance Tuning Tips statements are output using the Trace.Write and Trace.Warn methods, passing a category and
Measuring Performance message for each statement.
3. Debugging code can be conditionally run, depending on whether tracing is enabled for the page. Use the
Trace.IsEnabled property of the page to determine whether tracing is enabled.
ASP to ASP.NET Migration
Migration Overview
Syntax and Semantics
Language Compatibility
COM Interoperability
Transactions
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview By default, trace information will be collected for up to 10 requests (you can use the "clear current
Page Output Caching trace" link to reset the request counter). The trace section of the configuration file also supports an
attribute for controlling whether trace statements are output to the client browser, or whether they
Page Fragment Caching are only available from trace.axd. The attributes supported in the trace configuration section are
Page Data Caching listed in the table below:
Debugging
Application Trace Request Details
The SDK Debugger
After making a series of requests to the application, accessing trace.axd will list those requests in
Performance time-order. You can drill-down into the details for each request by selecting the "View Details" link.
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
The trace application presents the following detailed information for each request:
Request Detail
Value Description
Trace Information
Value Description
Control Hierarchy
Value Description
Session State
Value Description
Application State
Value Description
Cookies Collection
Value Description
Headers Collection
Value Description
Form Collection
Value Description
QueryString Collection
Value Description
Server Variables
Value Description
Section Summary
1. Application-level Tracing is enabled using a "trace" section in the configuration file at the
application root directory.
2. Application-level Tracing enables trace log output for every page within an application
(provided there is no page-level directive to explicitly disable trace).
3. After making a series of requests, details for those requests may be accessed by
requesting "trace.axd" from the application root.
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Important: When you attach to the Aspnet_wp.exe process, all threads in that process are frozen. Under no circumstances
Forms-based Authentication should you attempt to debug a live production application, because client requests can not execute normally until the debugger
Authorizing Users and Roles is detached.
User Account Impersonation
Security and WebServices Setting Breakpoints
Localization To set a breakpoint in your page, click the left-hand margin on a line containing an executable statement or function/method
signature. A red dot appears where the breakpoint is set. Move the mouse over the breakpoint to ensure that it is appropriately
Internationalization Overview
mapped to the correct application instance in the Aspnet_wp.exe process.
Setting Culture and Encoding
Localizing ASP.NET Applications Reissue the request to the page from your browser. The debugger will stop at the breakpoint and gain the current window
Working with Resource Files focus. From this point, you can step, set variable watches, view locals, stack information, disassembly, and so on. You can see
the intrinsic objects on the page, like Request, Response, and Session by using this (C#) or Me (VB) in the watch window.
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
1. Search the same path as the assembly. This is the normal location for .pdb files.
For local assemblies, place the symbols (.pdb files) in the application's /bin directory with the DLLs.
2. Search path as specified in the PE file (the NB10 debug header).
3. Search NT symbol file locations (environment variables _NT_SYMBOL_PATH and _NT_ALT_SYMBOL_PATH).
Note: If symbolic information cannot be found, the debugger prompts for a user-specified location.
Section Summary
1. The debugger described in this section supports manual-attach debugging of processes on a local development
computer.
2. Debugging allows the ASP.NET runtime to dynamically compile with symbolic information. Enable this by setting
<compilation debug="true"/> in the Web.config file located in the application's root directory. The debugger setting
should only be enabled when you are debugging an application, because it degrades application performance.
3. To debug an application, issue a request to a page, attach the debugger to the Aspnet_wp.exe process, set
breakpoints, and reissue the page request.
4. When attached to the Aspnet_wp.exe process, all threads in that process are frozen. Under no circumstances should
you debug a live production application, since client requests can not execute normally until the debugger is detached.
5. To debug pre-compiled components, such as business objects or code-behind files, you must compile with symbolic
information prior to debugging.
ASP.NET Web Services ● Throughput: The number of requests a Web application can
Introducing Web Services serve per unit of time, often measured in requests/second.
Writing a Simple Web Service Throughput can vary, depending on the load (number of client
Web Service Type Marshalling threads) applied to the server. This is usually considered the most
important performance metric to optimize.
Using Data in Web Services
Using Objects and Intrinsics
● Response Time: The length of time between the issuance of a
The WebService Behavior request and the first byte returned to the client from the server.
HTML Pattern Matching This is often the most perceptable aspect of performance to the
client user. If an application takes a long time to respond, the user
can become impatient and go to another site. The response time
ASP.NET Web Applications of an application can vary independently of (even inversely to) the
Application Overview rate of throughput.
Using the Global.asax File
Managing Application State ● Execution Time: The time it takes to process a request, usually
measured between the first byte and the last byte returned to the
HttpHandlers and Factories client from the server. Execution time directly affects the
throughput calculation.
Cache Services
Caching Overview ● Scalability: The measurement of an application's ability to
perform better as more resources (memory, processors, or
Page Output Caching
computers) are allocated to it. Often, it is a measurement of the
Page Fragment Caching rate of change of throughput with respect to the number of
Page Data Caching processors.
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
1. Disable Session State when not in use: Not all applications or pages require per-user session state. If it is not required, disable it
ASP.NET Web Forms completely. This is easily accomplished using a page-level directive, such as the following:
Introducing Web Forms
Working with Server Controls <%@ Page EnableSessionState="false" %>
Applying Styles to Controls
Server Control Form Validation Note: If a page requires access to session variables but does not create or modify them, set the value of the directive to ReadOnly.
Web Forms User Controls Session State can also be disabled for Web Service methods. See Using Objects and Intrinsics in the Web Services section.
Data Binding Server Controls
Server-Side Data Access 2. Choose your Session State provider carefully: ASP.NET provides three distinct ways to store session data for your application: in-
process session state, out-of-process session state as a Windows Service, and out-of-process session state in a SQL database. Each has
Data Access and Customization
its advantages, but in-process session state is by far the fastest solution. If you are only storing small amounts of volatile data in
Working with Business Objects session state you should use the in-process provider. The out-of-process solutions are primarily useful in Web garden and Web farm
Authoring Custom Controls scenarios or in situations in which data cannot be lost in the event of a server/process restart.
Web Forms Controls Reference
Web Forms Syntax Reference 3. Avoid excessive round trips to the server: The Web Forms page framework is one of the best features of ASP.NET, because it can
dramatically reduce the amount of code you need to write to accomplish a task. Programmatic access to page elements using server
controls and the postback event handling model are arguably the most time-saving features. However, there are appropriate and
ASP.NET Web Services inappropriate ways to use these features, and it is important to know when it is appropriate to use them.
Introducing Web Services
Writing a Simple Web Service An application typically needs to make a round trip to the server only when retrieving data or storing data. Most data manipulations can
take place on the client between round trips. For example, validating form entries can often take place on the client before the user
Web Service Type Marshalling
submits data. In general, if you do not need to relay information back to the server, then you should not make a round trip to the
Using Data in Web Services server.
Using Objects and Intrinsics
The WebService Behavior If you are writing your own server controls, consider having them render client-side code for up-level (ECMAScript-capable) browsers.
HTML Pattern Matching By employing "smart" controls, you can dramatically reduce the number of unecessary hits to your Web server.
4. Use Page.IsPostback to avoid extra work on a round trip: If you are handling server control postbacks, you often need to
ASP.NET Web Applications execute different code the first time the page is requested from the code you do use for the round trip when an event is fired. If you
Application Overview check the Page.IsPostBack property, your code can execute conditionally, depending on whether there is an initial request for the
Using the Global.asax File page or a responce to a server control event. It might seem obvious to do this, but in practice it is possible to omit this check without
changing the behavior of the page. For example:
Managing Application State
HttpHandlers and Factories
Cache Services
Caching Overview
Page Output Caching
Localization The Page_Load event executes on every request, so we checked Page.IsPostBack so that the first query does not execute when we
Internationalization Overview process the Button_Click event postback. Note that even without this check our page would behave identically, since the binding
Setting Culture and Encoding from the first query would be overturned by the call to DataBind in the event handler. Keep in mind that it can be easy to overlook this
simple performance improvement when you write your pages.
Localizing ASP.NET Applications
Working with Resource Files
5. Use server controls sparingly and appropriately: Even though it is extremely easy to use, a server control might not always be
the best choice. In many cases, a simple rendering or databinding substitution will accomplish the same thing. For example:
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
http://samples.gotdotnet.com/quickstart/aspplus/doc/perftuning.aspx (2 of 7) [4/02/2002 8:52:27 AM]
Microsoft ASP.NET QuickStarts Tutorial
Performance Overview
<script language="VB" runat="server">
Performance Tuning Tips
Measuring Performance Public imagePath As String
Sub Page_Load(sender As Object, e As EventArgs)
'...retrieve data for imagePath here...
ASP to ASP.NET Migration DataBind()
Migration Overview End Sub
Syntax and Semantics </script>
Language Compatibility
<%--the span and img server controls are unecessary...--%>
COM Interoperability The path to the image is: <span innerhtml='<%# imagePath %>' runat="server"/><br>
Transactions <img src='<%# imagePath %>' runat="server"/>
<br><br>
Sample Applications
<%-- use databinding to substitute literals instead...--%>
A Personalized Portal
The path to the image is: <%# imagePath %><br>
An E-Commerce Storefront <img src='<%# imagePath %>' />
A Class Browser Application
<br><br>
IBuySpy.com
<%-- or a simple rendering expression...--%>
The path to the image is: <%= imagePath %><br>
Get URL for this page
<img src='<%= imagePath %>' />
VB
In this example, a server control is not needed to substitute values into the resulting HTML sent back to the client. There are many
other cases where this technique works just fine, even in server control templates. However, if you want to programmatically
manipulate the control's properties, handle events from it, or take advantage of its state preservation, then a server control would be
appropriate. You should examine your use of server controls and look for code you can optimize.
6. Avoid excessive server control view state: Automatic state management is a feature that enables server controls to re-populate
their values on a round trip without requiring you to write any code. This feature is not free however, since the state of a control is
passed to and from the server in a hidden form field. You should be aware of when ViewState is helping you and when it is not. For
example, if you are binding a control to data on every round trip (as in the datagrid example in tip #4), then you do not need the
control to maintain it's view state, since you will wipe out any re-populated data in any case.
ViewState is enabled for all server controls by default. To disable it, set the MaintainState property of the control to false, as in the
following example:
You can also turn ViewState off at the page level. This is useful when you do not post back from a page at all, as in the following
example:
Note that this attribute is also supported by the User Control directive. To analyze the amount of view state used by the server
controls on your page, enable tracing and look at the View State column of the Control Hierarchy table. For more information about the
Trace feature and how to enable it, see the Application-level Trace Logging feature.
7. Use System.Text.StringBuilder for string concatenation: Web applications often need to perform extensive string manipulation.
Although standard string operators work for concatenation, they have a negative impact on performance. Using the
System.Text.StringBuilder class to concatenate strings provides better performance, as demonstrated by the following example:
Dim end_query As String = " AND StartTime > '" & startTime & "' AND StartTime < '" & endTime & "'"
VB
8. Do not rely on exceptions in your code: Exceptions are very expensive and should rarely occur in your code. You should never use
exceptions as a way to control normal program flow. If it is possible to detect in code a condition that would cause an exception, you
should do that instead of waiting to catch the exception before handling that condition. Common scenarios include checking for null,
assigning to a string that will be parsed into a numeric value, or checking for specific values before applying math operations. For
example:
Try
result = 100 / num
Catch (e As Exception)
result = 0
End Try
// To this:
If Not (num = 0)
result = 100 / num
Else
result = 0
End If
VB
9. Use early binding in Visual Basic or JScript code: One of the advantages of Visual Basic, VBScript, and JScript is their typeless
nature. Variables can be created simply by using them and need no explicit type declaration. When assigning from one type to another,
conversions are performed automatically, as well. This can be both an advantage and a disadvantage, since late binding is a very
expensive convenience in terms of performance.
The Visual Basic language now supports type-safe programming through the use of a special Option Strict compiler directive. For
backward compatibility, ASP.NET does not enable Option Strict by default. However, for optimal perfomance, you should enable
Option Strict for your pages by using a Strict attribute on the page or Control directive:
<%
Dim B
Dim C As String
%>
The last distinction is complicated. The JScript compiler optimizes if it can figure out the type, based on how a variable is used. In the
following example, the variable A is early-bound but the variable B is late-bound:
var A;
var B;
A = "Hello";
B = "World";
B = 0;
For the best performance, declare your JScript variables as having a type. For example, "var A : String".
10. Port call-intensive COM components to managed code: The .NET Framework provides a remarkably easy way to interoperate
with traditional COM components. The benefit is that you can take advantage of the new platform while preserving your existing code.
However, there are some circumstances in which the performance cost of keeping your old components is greater than the cost to
migrate your components to managed code. Every situation is unique, and the best way to decide what needs to be changed is to
measure site performance. In general, however, the performance impact of COM interoperability is proportional to the number of
function calls made or the amount of data marshaled from unmanaged to managed code. A component that requires a high volume of
calls to interact with it is called "chatty," due to the number of communications between layers. You should consider porting such
components to fully managed code to benefit from the performance gains provided by the .NET platform. Alternatively, you might
consider redesigning your component to require fewer calls or to marshal more data at once.
11. Use SQL stored procedures for data access: Of all the data access methods provided by the .NET Framework, SQL-based data
access is the best choice for building scalable web applications with the best performance. When using the managed SQL provider, you
can get an additional performance boost by using compiled stored procedures instead of ad hoc queries. For an example of using SQL
stored procedures, refer to the Server-Side Data Access section of this tutorial.
12. Use SqlDataReader for a fast-forward, read-only data cursor: A SqlDataReader object provides a forward, read-only cursor
over data retrieved from a SQL database. Because SqlDataReader uses Tabular Data Stream (TDS) packets to read data directly from
a database connection, it provides better performance than using a DataSet, if you can use that for your scenario. Because
SqlDataReader supports the IEnumerable interface, you can even bind server controls, as well. For an example of using
SqlDataReader, see the Server-Side Data Access section of this tutorial.
13. Cache data and output wherever possible: The ASP.NET programming model provides a simple mechanism for caching page
output or data when it does not need to be dynamically computed for every request. You can design your pages with caching in mind to
optimize those places in your application that you expect to have the most traffic. More than any feature of the .NET Framework, the
appropriate use of caching can enhance the performance of your site, sometimes by an order of magnitude or more. For more
information about how to use caching, see the Cache Services section of this tutorial.
15. Do not forget to disable Debug mode: The <compilation> section in ASP.NET configuration controls whether an application is
compiled in Debug mode, or not. Debug mode degrades performance significantly. Always remember to disable Debug mode before
you deploy a production application or measure performance. For more information about Debug mode, refer to the section entitled
The SDK Debugger.
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET pages also have several semantic changes from existing ASP pages. The following
Cache Services issues are the ones most likely to affect you:
Caching Overview
Page Output Caching
● ASP.NET pages only support a single language.
Page Fragment Caching
Page Data Caching ASP allowed multiple languages to be used on a single page, which was useful for
script library scenarios. Because of ASP.NET's compiled nature, it supports only a
single language on a page. However, it is still possible to have multiple pages, each
Configuration with a separate language, within a single application. User Controls might also have
Configuration Overview a different language from the page that contains them. This enables you to integrate
Configuration File Format functionality written in different languages in a single page. This is an adequate
Retrieving Configuration substitute for the multiple-language Include files that are prevalent in traditional ASP
applications.
Debugging In ASP, page-render functions could be declared with <% %> blocks:
The SDK Debugger
Section Summary
1. With three exceptions, ASP.NET is 100% API-compatible with traditional ASP. The
API changes are that, now, Request(), Request.QueryString(), and
Request.Form() all return individual strings, rather than string arrays.
2. ASP.NET pages support only a single language.
3. ASP.NET page functions must be declared in <script runat=server> blocks.
4. Page-render functions are not supported.
<%
ASP.NET Web Services ' Old ASP syntax.
Introducing Web Services Dim MyConn
Set MyConn = Server.CreateObject("ADODB.Connection")
Writing a Simple Web Service
Web Service Type Marshalling ' New ASP.NET syntax.
Using Data in Web Services Dim MyConn
MyConn = Server.CreateObject("ADODB.Connection")
Using Objects and Intrinsics %>
The WebService Behavior
HTML Pattern Matching ● No more non-indexed default properties. Non-indexed default
properties enable an expression that normally refers to an object to refer to
a default property of the object instead. The unfortunate consequence of
ASP.NET Web Applications support for default properties is that it makes programs more difficult to
Application Overview read, since the meaning of an expression depends on its context. In Visual
Using the Global.asax File Basic.NET, non-indexed properties must always be specified explicitly within
code.
Managing Application State
HttpHandlers and Factories
<%
' Old ASP syntax (retrieving recordset column value).
Cache Services Set MyConn = Server.CreateObject("ADODB.Connection")
MyConn.Open("TestDB")
Caching Overview
Set RS = MyConn.Execute("Select * from Products")
Page Output Caching Response.Write RS("Name")
Page Fragment Caching
' New ASP.NET syntax (retrieving recordset column value).
Page Data Caching MyConn = Server.CreateObject("ADODB.Connection")
MyConn.Open("TestDB")
RS = MyConn.Execute("Select * from Products")
Configuration Response.Write RS("Name").Value
Configuration Overview %>
Configuration File Format
Retrieving Configuration Indexed default properties are still supported:
Deployment <%
Deploying Applications Dim RS As RecordSet
Note: There are many additional differences between Visual Basic 6 and Visual
Sample Applications Basic.NET. Consult the language documentation for more information.
A Personalized Portal
An E-Commerce Storefront Section Summary
A Class Browser Application
IBuySpy.com 1. The differences between the VBScript used in ASP and the Visual Basic.NET
language used in ASP.NET are by far the most extensive of all the potential
migration issues. The changes have been made to simplify the language and
Get URL for this page
improve consistency, readability, maintainability, and robustness.
2. Set and Let assignments are no longer supported in Visual Basic.NET. Use
standard variable assignment instead.
3. Non-indexed default properties are not supported in Visual Basic.NET.
Indexed default properties are still supported.
4. Parentheses are required for calling subroutines in Visual Basic.NET.
5. The new default is by-value arguments. You can still use by-reference
arguments by explicitly using the ByRef modifier.
Performance Considerations
Cache Services
Caching Overview
In ASP.NET, the thread pool is a multithreaded apartment (MTA) by
Page Output Caching default, which can affect the performance of traditional apartment-
Page Fragment Caching threaded Visual Basic 5 and Visual Basic 6 components. The
Page Data Caching ASPCompat="true" attribute enables an STA thread pool to address
performance with existing Visual Basic components on a per-page basis.
Handling Errors
1. ASP.NET exposes the familiar Server.CreateObject API to
developers for creating late-bound references to COM.
Security 2. You can also use early-bound, traditional COM components by
Security Overview creating runtime callable wrappers, which optimize the
Authentication & Authorization performance of calls between unmanaged and managed code.
3. ASP.NET continues to support the existing ASP intrinsic interfaces
Windows-based Authentication ObjectContext Intrinsic Flow, OnStartPage, and
Forms-based Authentication OnEndPage. These interfaces are explicitly enabled using the
Authorizing Users and Roles page directive <%@ Page ASPCompat="true" %>.
4. The ASPCompat="true" attribute enables STA thread pools on a
User Account Impersonation
per-page basis to address performance with existing Visual Basic
Security and WebServices components.
5. In nearly all scenarios, rewriting your COM components in
managed code provides performance benefits.
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Attribute Description
ASP.NET Web Applications
Required The page requires a transaction. It runs
Application Overview in the context of an existing transaction,
Using the Global.asax File if one exists. If not, it starts one.
Managing Application State RequiresNew The page requires a transaction and a
HttpHandlers and Factories new transaction is started for each
request.
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Name: Category:
psychology
Lookup
Name: Category:
psychology
Lookup
Welcome to ASP.NET
Welcome to ASP.NET
Welcome to ASP.NET
Welcome to ASP.NET
Welcome to ASP.NET
Welcome to ASP.NET
Welcome to ASP.NET
Welcome to ASP.NET
Name: Category:
psychology
Lookup
Name: Category:
psychology
Lookup
Name: Category:
psychology
Lookup
Name: Category:
psychology
Lookup
Name: Category:
psychology
Lookup
February 2002
Sun Mon Tue Wed Thu Fri Sat
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28
Name: Category:
psychology
Lookup
Name: Category:
psychology
Lookup
Name: Category:
psychology
Lookup
Name:
Category: <!--Select Category-->
Lookup
Name:
Category: <!--Select Category-->
Lookup
Name:
Category: <!--Select Category-->
Lookup
Styled Span
Styled Button
Click me!
Select an item:
Item 1
Select an option:
Option 1
Option 2
Option 3
Styled Span
Styled Button
Click me!
Select an item:
Item 1
Select an option:
Option 1
Option 2
Option 3
Styled Span
Styled Button
Click me!
Select an item:
Item 1
Select an option:
Option 1
Option 2
Option 3
Style Properties
No Style:
Style: (OK, maybe it's bad style, but at least I wear matching socks...)
27 28 29 30 31 1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 1 2
3 4 5 6 7 8 9
Style Sub-Properties
27 28 29 30 31 1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 1 2
3 4 5 6 7 8 9
Style Sub-Properties
27 28 29 30 31 1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 1 2
3 4 5 6 7 8 9
27 28 29 30 31 1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 1 2
3 4 5 6 7 8 9
Login:
Password:
Submit
Login:
Password:
Submit
MasterCard
Card Type:
Visa
Card Number:
Expiration Date:
Validate
MasterCard
Card Type: *
Visa
Card Number: *
Expiration Date: *
Validate
ValidationSummary Sample
MasterCard
Card Type:
Visa
Card Number:
Expiration Date:
Validate
Select the type of validation summary display you wish: Bulleted List
CompareValidator Example
Type a value in each textbox, select a comparison operator, then click "Validate" to test.
Equal
NotEqual
GreaterThan
GreaterThanEqual Validate
LessThan
RangeValidator Sample
Validate
Personal Information
Zip Code:
Validate
Personal Information
Email:
Phone:
Zip Code:
Validate
CustomValidator Example
Enter an even number:
Validate
Sign-In Information
Email Address:
Password:
Re-enter Password:
Personal Information
First Name:
Last Name:
Address:
Phone:
MasterCard
Card Type:
Visa
Card Number:
Expiration Date:
Sign In
Change Properties
Shipping Address
Address: One Microsoft Way
Billing Address
Address:
City: State: Zip:
Submit Form
Password:
Submit
Login:
Password:
Submit
Category: business
Title: The Busy Title: You Can
Executive's Database Combat Computer
Guide Stress!
Category: business Category:
Publisher ID: 1389 business
Price: $ 19.99 Publisher ID:
0736
Price: $ 2.99
Category: trad_cook
Title: Onions, Leeks, Title: Sushi,
and Garlic: Cooking Anyone?
Secrets of the Category:
Mediterranean trad_cook
Category: trad_cook Publisher ID:
Publisher ID: 0877 0877
Price: $ 20.95 Price: $ 14.99
Category: mod_cook
Title: Silicon Valley Title: The Gourmet
Gastronomic Treats Microwave
Category: mod_cook Category:
Publisher ID: 0877 mod_cook
Price: $ 19.99 Publisher ID:
0877
Price: $ 2.99
CA Submit
Selected State:
DataBinding DropDownList
IN Submit
Databinding to a DataView
DataBinding to a Hashtable
key1 : value1
key3 : value3
key2 : value2
Item: Item 0 Order Date: Item: Item 3 Order Date: Item: Item 6 Order Date:
✔
Item: Item 1 Order Date: Item: Item 4 Order Date: Item: Item 7 Order Date:
✔ ✔
Item: Item 2 Order Date: Item: Item 5 Order Date: Item: Item 8 Order Date:
✔
ADO.NET uses some ADO objects, such as the Connection and Command objects, and also introduces new objects. Key new
ASP.NET Web Forms ADO.NET objects include the DataSet, DataReader, and DataAdapter.
Introducing Web Forms
Working with Server Controls The important distinction between this evolved stage of ADO.NET and previous data architectures is that there exists an object -- the
Applying Styles to Controls DataSet -- that is separate and distinct from any data stores. Because of that, the DataSet functions as a standalone entity. You can
think of the DataSet as an always disconnected recordset that knows nothing about the source or destination of the data it contains.
Server Control Form Validation
Inside a DataSet, much like in a database, there are tables, columns, relationships, constraints, views, and so forth.
Web Forms User Controls
Data Binding Server Controls
A DataAdapter is the object that connects to the database to fill the DataSet. Then, it connects back to the database to update the
Server-Side Data Access data there, based on operations performed while the DataSet held the data. In the past, data processing has been primarily
Data Access and Customization connection-based. Now, in an effort to make multi-tiered apps more efficient, data processing is turning to a message-based approach
that revolves around chunks of information. At the center of this approach is the DataAdapter, which provides a bridge to retrieve
Working with Business Objects
and save data between a DataSet and its source data store. It accomplishes this by means of requests to the appropriate SQL
Authoring Custom Controls commands made against the data store.
Web Forms Controls Reference
Web Forms Syntax Reference The XML-based DataSet object provides a consistent programming model that works with all models of data storage: flat, relational,
and hierarchical. It does this by having no 'knowledge' of the source of its data, and by representing the data that it holds as
collections and data types. No matter what the source of the data within the DataSet is, it is manipulated through the same set of
ASP.NET Web Services standard APIs exposed through the DataSet and its subordinate objects.
Introducing Web Services
Writing a Simple Web Service While the DataSet has no knowledge of the source of its data, the managed provider has detailed and specific information. The role of
Web Service Type Marshalling the managed provider is to connect, fill, and persist the DataSet to and from data stores. The OLE DB and SQL Server .NET Data
Providers (System.Data.OleDb and System.Data.SqlClient) that are part of the .Net Framework provide four basic objects: the
Using Data in Web Services
Command, Connection, DataReader and DataAdapter. In the remaining sections of this document, we'll walk through each part
Using Objects and Intrinsics of the DataSet and the OLEDB/SQL .NET Data Providers explaining what they are, and how to program against them.
The WebService Behavior
HTML Pattern Matching The following sections will introduce you to some objects that have evolved, and some that are new. These objects are:
ASP.NET Web Applications ● Connections. For connection to and managing transactions against a database.
Commands. For issuing SQL commands against a database.
Application Overview
●
● DataReaders. For reading a forward-only stream of data records from a SQL Server data source.
Using the Global.asax File ● DataSets. For storing, remoting and programming against flat data, XML data and relational data.
Managing Application State ● DataAdapters. For pushing data into a DataSet, and reconciling data against a database.
HttpHandlers and Factories
Note When dealing with connections to a database, there are two different options: ADO.NET SQL Data Provider
(System.Data.SqlClient) and ADO.NET OLE DB Data Provider (System.Data.OleDb). In these samples we will use the
Cache Services ADO.NET SQL Data Provider. These are written to talk directly to Microsoft SQL Server. The ADO.NET OLE DB Data
Caching Overview Provider is used to talk to any OLE DB provider (as it uses OLEDB underneath).
Page Output Caching
Page Fragment Caching Connections
Page Data Caching
Connections are used to 'talk to' databases, and are respresented by provider-specific classes such as SQLConnection. Commands
travel over connections and resultsets are returned in the form of streams which can be read by a DataReader object, or pushed into
Configuration a DataSet object.
Configuration Overview
Configuration File Format
The example below shows how to create a connection object. Connections can be opened explicitly by calling the Open method on the
Retrieving Configuration connection, or will be opened implicitly when using a DataAdapter.
Security VB AdoOverview1.aspx
Security Overview
Authentication & Authorization [Run Sample] | [View Source]
Windows-based Authentication
Forms-based Authentication Commands
Authorizing Users and Roles
User Account Impersonation Commands contain the information that is submitted to a database, and are represented by provider-specific classes such as
Security and WebServices SQLCommand. A command can be a stored procedure call, an UPDATE statement, or a statement that returns results. You can also
use input and output parameters, and return values as part of your command syntax. The example below shows how to issue an
INSERT statement against the Northwind database.
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Debugging
The SDK Debugger
Performance VB AdoOverview2.aspx
Performance Overview
Performance Tuning Tips [Run Sample] | [View Source]
Measuring Performance
DataReaders
ASP to ASP.NET Migration
Migration Overview The DataReader object is somewhat synonymous with a read-only/forward-only cursor over data. The DataReader API supports flat
Syntax and Semantics as well as hierarchical data. A DataReader object is returned after executing a command against a database. The format of the
returned DataReader object is different from a recordset.For example, you might use the DataReader to show the results of a
Language Compatibility search list in a web page.
COM Interoperability
Transactions
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application VB AdoOverview3.aspx
IBuySpy.com
[Run Sample] | [View Source]
Get URL for this page
DataSets
The DataSet object is similar to the ADO Recordset object, but more powerful, and with one other important distinction: the
DataSet is always disconnected. The DataSet object represents a cache of data, with database-like structures such as tables,
columns, relationships, and constraints. However, though a DataSet can and does behave much like a database, it is important to
remember that DataSet objects do not interact directly with databases, or other source data. This allows the developer to work with a
programming model that is always consistent, regardless of where the source data resides. Data coming from a database, an XML file,
from code, or user input can all be placed into DataSet objects. Then, as changes are made to the DataSet they can be tracked and
verified before updating the source data. The GetChanges method of the DataSet object actually creates a second DatSet that
contains only the changes to the data. This DataSet is then used by a DataAdapter (or other objects) to update the original data
source.
The DataSet has many XML characteristics, including the ability to produce and consume XML data and XML schemas. XML schemas
can be used to describe schemas interchanged via WebServices. In fact, a DataSet with a schema can actually be compiled for type
safety and statement completion.
DataAdapters (OLEDB/SQL)
The DataAdapter object works as a bridge between the DataSet and the source data. Using the provider-specific SqlDataAdapter
(along with its associated SqlCommand and SqlConnection) can increase overall performance when working with a Microsoft SQL
Server databases. For other OLE DB-supported databases, you would use the OleDbDataAdapter object and its associated
OleDbCommand and OleDbConnection objects.
The DataAdapter object uses commands to update the data source after changes have been made to the DataSet. Using the Fill
method of the DataAdapter calls the SELECT command; using the Update method calls the INSERT, UPDATE or DELETE command
for each changed row. You can explicitly set these commands in order to control the statements used at runtime to resolve changes,
including the use of stored procedures. For ad-hoc scenarios, a CommandBuilder object can generate these at run-time based upon
a select statement. However, this run-time generation requires an extra round-trip to the server in order to gather required metadata,
so explicitly providing the INSERT, UPDATE, and DELETE commands at design time will result in better run-time performance.
mySqlDataAdapter.InsertCommand.CommandText = "sp_InsertCustomer"
mySqlDataAdapter.InsertCommand.CommandType = CommandType.StoredProcedure
mySqlDataAdapter.DeleteCommand.CommandText = "sp_DeleteCustomer"
mySqlDataAdapter.DeleteCommand.CommandType = CommandType.StoredProcedure
mySqlDataAdapter.UpdateCommand.CommandText = "sp_UpdateCustomers"
mySqlDataAdapter.UpdateCommand.CommandType = CommandType.StoredProcedure
VB
mySqlDataAdapter.Update(myDataSet)
VB
The sample below illustrates loading a DataAdapter via a SELECT statement. Then it updates, deletes and adds some records within
the DataSet. Finally, it returns those updates to the source database via the DataAdapter. The constructed DeleteCommand,
InsertCommand and UpdateCommand are shown in the page. It also illustrates using multiple DataAdapter objects to load multiple
tables (Customers and Orders) into the DataSet.
VB AdoOverview4.aspx
Section Summary
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
22- One Microsoft Way Redmond CA 98005 False
2222
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- One Microsoft Way Redmond CA 98005 True
1517
151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
254-
85- One Microsoft Way Redmond CA 98005 False
8700
267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
88- S SD 111 234-6545 s s KS 11234 True
7645
999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
Buenos Aires
99- Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
8888
999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
au_id au_lname au_fname phone address city state zip contract Add a New Author:
000-
00- ana Takeit 100 111-2333 1937 17th Ave Chuckle City TN 63841 False
Author ID: 000-00-0000
0000
Last Name: Doe
000-
00- Yozzav phil 100 111-2222 Sixtengatan 16 shenzhen IN 51802 False First
0001 John
Name:
000-
00- Dear John 310 777-8375 123 No Way Smallville UT 34523 True Phone: 808 555-5555
0002
Address: One Microsoft Way
000-
00- MMM GoodKKKK 800 123-4569 Ext Way 123 •stanbul MO 80300 False
0003 City: Redmond
000- State: CA
00- Shit Maggie'sTeensfa 905 555-5544 123 Main street Mississaugadf KS 12345 False
0004
Zip Code: 98005
000-
00- Nisse Pettersson 123 456-7890 jularbovägen Stockholm MD 12345 True Contract: False
0005
Add Author
000-
00- Key Cindy Cla 858 555-1212 One San Diego Way 268 244 B IUH IPU OR 92139 False
0006
000-
00- XT xiangTest 888 859-7845 12345 Hehaw Vermont TN 98005 True
0007
000-
00- Hakan Erens 216 342-1111 Uskudar Istanbul MD 11111 False
0008
000-
00- Hertz Jezebel 808 555-5555 17 Instant Oats Ct Benjaminia IN 98005 True
0009
000-
00- REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
0010
000-
00- Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
0011
000-
00- Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
0012
000-
00- maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
0014
000-
00- Changc Zork 808 555-5555 On My Way Redmond CA 98005 False
0015
000-
00- Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
0016
000-
00- efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
0017
000-
00- pippo pluto 293849832 no way23 tel-aviv23 CA 98005 False
0018
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
22- One Microsoft Way Redmond CA 98005 False
2222
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- One Microsoft Way Redmond CA 98005 False
8700
267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
88- S SD 111 234-6545 s s KS 11234 True
7645
999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
Buenos Aires
99- Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
8888
999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
au_id au_lname au_fname phone address city state zip contract Add a New Author:
000-
00- ana Takeit 100 111-2333 1937 17th Ave Chuckle City TN 63841 False
Author ID: 000-00-0000
0000
Last Name: Doe
000-
00- Yozzav phil 100 111-2222 Sixtengatan 16 shenzhen IN 51802 False
0001
First Name: John
000-
00- XT xiangTest 888 859-7845 12345 Hehaw Vermont TN 98005 True
0007
000-
00- Hakan Erens 216 342-1111 Uskudar Istanbul MD 11111 False
0008
000-
00- Hertz Jezebel 808 555-5555 17 Instant Oats Ct Benjaminia IN 98005 True
0009
000-
00- REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
0010
000-
00- Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
0011
000-
00- Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
0012
000-
00- Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
0013
000-
00- efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
0017
000-
00- pippo pluto 293849832 no way23 tel-aviv23 CA 98005 False
0018
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- One Microsoft Way Redmond CA 98005 True
1517
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
000-
Edit 00- MMM GoodKKKK 800 123-4569 Ext Way 123 •stanbul MO 80300 False
0003
000-
Edit 00- Shit Maggie'sTeensfa 905 555-5544 123 Main street Mississaugadf KS 12345 False
0004
000-
Edit 00- Nisse Pettersson 123 456-7890 jularbovägen Stockholm MD 12345 True
0005
000-
Edit 00- Key Cindy Cla 858 555-1212 One San Diego Way 268 244 B IUH IPU OR 92139 False
0006
000-
Edit 00- XT xiangTest 888 859-7845 12345 Hehaw Vermont TN 98005 True
0007
000-
Edit 00- Hakan Erens 216 342-1111 Uskudar Istanbul MD 11111 False
0008
000-
Edit 00- Hertz Jezebel 808 555-5555 17 Instant Oats Ct Benjaminia IN 98005 True
0009
000-
Edit 00- REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
0010
000-
Edit 00- Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
0011
000-
Edit 00- Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
0012
000-
Edit 00- Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
0013
000-
Edit 00- maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
0014
000-
Edit 00- Changc Zork 808 555-5555 On My Way Redmond CA 98005 False
0015
000-
Edit 00- Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
0016
000-
Edit 00- efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
0017
000-
Edit 00- pippo pluto 293849832 no way23 tel-aviv23 CA 98005 False
0018
000-
Edit 00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
Edit 00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
Edit 00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
Edit 00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
Edit 00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
Edit 00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
Edit 00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
Edit 00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
Edit 00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
Edit 00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
Edit 00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
Edit 00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
Edit 00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
Edit 00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
Edit 00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
Edit 00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
Edit 00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
Edit 00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
Edit 00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
Edit 00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
Edit 00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
Edit 00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
Edit 00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
Edit 00- 2011 Palomar Airport Road,
Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
Edit 00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
Edit 00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
Edit 00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
Edit 00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Edit 00- Bjorn is the man! CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
0049
000-
Edit 00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
Edit 00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
Edit 00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
Edit 00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
Edit 00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
Edit 00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
Edit 00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Edit 00- Gingerbread Ratte! pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
0057
000-
Edit 00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
Edit 00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
Edit 00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
Edit 00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
Edit 00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
Edit 00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
Edit 00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
Edit 00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
Edit 00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
Edit 00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
Edit 00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
Edit 00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
Edit 00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
Edit 00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
Edit 00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
Edit 00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
Edit 00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
Edit 00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
Edit 00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
Edit 00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
Edit 00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
Edit 00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
Edit 00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
Edit 00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
Edit 00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
Edit 00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
Edit 00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
Edit 00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
Edit 00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
Edit 00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
Edit 00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
Edit 00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
Edit 00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
Edit 00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
Edit 00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
Edit 00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
Edit 00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
Edit 00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
Edit 00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
Edit 00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
Edit 00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
Edit 00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
Edit 00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
Edit 00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
Edit 00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
Edit 00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
Edit 00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
Edit 00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
Edit 00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
Edit 00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
Edit 00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
Edit 00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
Edit 00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
Edit 00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
Edit 00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
Edit 00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
Edit 00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
Edit 00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
Edit 00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
Edit 00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
Edit 00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
Edit 00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
Edit 00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
Edit 00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
Edit 00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
Edit 00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
Edit 00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
Edit 00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
Edit 00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
Edit 00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
Edit 00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
Edit 00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
Edit 00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
Edit 00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
Edit 00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
Edit 00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
Edit 00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
Edit 00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
Edit 00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
Edit 00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
Edit 00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
Edit 00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
Edit 00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
Edit 00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
Edit 00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
Edit 00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
Edit 00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
Edit 00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
Edit 00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
Edit 00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
Edit 00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
Edit 00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
Edit 00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
Edit 00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
Edit 00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
Edit 00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
Edit 00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
Edit 00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
Edit 00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
Edit 00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
Edit 00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
Edit 00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
Edit 00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
Edit 00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
Edit 00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
Edit 00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
Edit 00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
Edit 00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
Edit 00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
Edit 00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
Edit 00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
Edit 00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
Edit 00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
Edit 00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
Edit 00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
Edit 00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
Edit 00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
Edit 00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
Edit 00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
Edit 00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
Edit 00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
Edit 00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
Edit 00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
Edit 00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
Edit 01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
Edit 01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
Edit 01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
Edit 01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
Edit 01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
Edit 01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
Edit 01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
Edit 01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
Edit 01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
Edit 01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
Edit 02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
Edit 07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
Edit 08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
Edit 10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
Edit 10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
Edit 10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
Edit 11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
Edit 11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
Edit 11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
Edit 11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
Edit 11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
Edit 11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
Edit 11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
Edit 11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
Edit 12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 12- Doe John 808 555-5555 CA 98005 False
1111
000-
Edit 15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
Edit 20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
Edit 20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
Edit 21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
Edit 22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 22- One Microsoft Way Redmond CA 98005 False
2222
000-
Edit 25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
Edit 26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
Edit 28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
Edit 44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
Edit 44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
Edit 44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
Edit 55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
Edit 55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
Edit 65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
Edit 66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
Edit 66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
Edit 69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
Edit 76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
Edit 77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
Edit 77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
Edit 77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
Edit 78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
Edit 86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
Edit 88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
Edit 88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
Edit 88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
Edit 90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
Edit 90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
Edit 98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
Edit 99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
Edit 99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
Edit 99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
Edit 99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
Edit 99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
Edit 00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
Edit 00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
Edit 00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
Edit 00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
Edit 00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
Edit 00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
Edit 01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
Edit 01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
Edit 01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
Edit 01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
Edit 02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
Edit 02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
Edit 10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
Edit 61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
Edit 62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
Edit 99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
Edit 00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
Edit 88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
Edit 00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
Edit 01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
Edit 12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
Edit 00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
Edit 00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
Edit 01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
Edit 01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
Edit 10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
Edit 20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
Edit 60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
Edit 00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
Edit 00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
Edit 00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
Edit 01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
Edit 10- Doe bob nunya Austin TN 98005 False
0101
011-
Edit 11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
Edit 11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
Edit 11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
Edit 11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
Edit 03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
012-
Edit 34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
Edit 01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
Edit 11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
Edit 00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
Edit 10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
Edit 00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
Edit 00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
Edit 42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
Edit 85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
Edit 00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
Edit 06- abc John 55 Germany Detmold CA 32760 False
0000
056-
Edit 00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
Edit 00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
056-
Edit 99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
Edit 00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
Edit 01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
Edit 02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
Edit 19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
Edit 70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
Edit 00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
Edit 04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
Edit 09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
Edit 00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
Edit 00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
Edit 00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
Edit 00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Edit 00- Ribeiro Gianechini Danilo 111 222-3333 My Address My City KS 09110 False
0666
100-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
Edit 00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
Edit 02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
Edit 10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
Edit 10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
Edit 10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
Edit 20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
Edit 20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
Edit 34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
Edit 50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
Edit 50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
Edit 55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
Edit 99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
Edit 99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
Edit 01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
Edit 01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
Edit 11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
Edit 11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
Edit 25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
Edit 00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
Edit 10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
110-
Edit 98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
Edit 00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
Edit 00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
Edit 00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
Edit 01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
Edit 11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
Edit 11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
Edit 11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
Edit 11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
Edit 11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
Edit 11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
Edit 11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
Edit 11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
Edit 11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
Edit 11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
Edit 11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
Edit 11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
Edit 11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
Edit 12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
Edit 12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
Edit 13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
Edit 22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
Edit 22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
Edit 22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
Edit 22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
Edit 22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
Edit 22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
Edit 22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
Edit 22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
Edit 22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
Edit 22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
Edit 24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
Edit 43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
Edit 50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
Edit 99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
Edit 99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
Edit 99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
Edit 23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
Edit 23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
112-
Edit 55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
Edit 00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
Edit 08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
Edit 00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
Edit 10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
Edit 12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
Edit 12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
Edit 22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
Edit 80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
Edit 12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
Edit 22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
Edit 32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
Edit 00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
Edit 00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
Edit 00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
Edit 00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
Edit 06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
Edit 11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
Edit 11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
Edit 12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
Edit 12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
Edit 12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
Edit 12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
Edit 12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
Edit 12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
Edit 12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
Edit 16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
Edit 22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
Edit 33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
Edit 33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
Edit 44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
Edit 44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
Edit 45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
Edit 45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
Edit 45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
Edit 45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
Edit 45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
Edit 45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
Edit 55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
Edit 55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
Edit 55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
Edit 55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
Edit 59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
Edit 64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
Edit 64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
Edit 89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
Edit 90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
Edit 98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
Edit 99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
Edit 85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
Edit 31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
Edit 09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
Edit 25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
Edit 44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
Edit 15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
Edit 15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
Edit 15- One Microsoft Way Redmond CA 98005 True
1517
151-
Edit 15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
Edit 45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
Edit 05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
Edit 32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
Edit 00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
Edit 00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
Edit 77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
Edit 46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
Edit 00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
Edit 12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
Edit 12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
Edit 22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
Edit 22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
Edit 22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
Edit 22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
Edit 88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
Edit 45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
Edit 00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
Edit 56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
Edit 44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
Edit 34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
Edit 99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
Edit 95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
Edit 95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
Edit 00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
Edit 85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
Edit 85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
254-
Edit 85- One Microsoft Way Redmond CA 98005 False
8700
267-
Edit 41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
Edit 54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
Edit 80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
Edit 00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
Edit 18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
Edit 32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
Edit 54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
Edit 32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
Edit 66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
Edit 45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
Edit 00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
Edit 00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
Edit 00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
Edit 00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
Edit 22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
Edit 30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
Edit 31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
Edit 33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
Edit 33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
Edit 33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
Edit 22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
Edit 33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
Edit 67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
Edit 88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
Edit 76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
Edit 27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
Edit 27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
366-
Edit 26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
Edit 87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
Edit 00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
Edit 26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
Edit 99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
Edit 00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
Edit 56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
Edit 17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
Edit 00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
Edit 90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
Edit 00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
Edit 23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
Edit 44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
Edit 00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
Edit 44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
454-
Edit 21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
Edit 21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
Edit 99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
Edit 27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
Edit 29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
Edit 00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
Edit 72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
Edit 00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
Edit 11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
Edit 12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
Edit 44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
Edit 44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
Edit 55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
Edit 55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
Edit 55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
555-
Edit 66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
Edit 66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
Edit 98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
Edit 00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
Edit 88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
Edit 00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
Edit 00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
Edit 23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
Edit 92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
Edit 21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
Edit 00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
Edit 55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
Edit 66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
Edit 66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
Edit 66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
Edit 66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
Edit 66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
Edit 99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
Edit 71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
Edit 00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
Edit 69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
Edit 00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
Edit 00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
Edit 45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
Edit 51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs ds d
Edit 08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
sdf sdf s
9931
724-
Edit 80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
736-
Edit 83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
Edit 65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
Edit 30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
Edit 00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
Edit 00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
Edit 98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
Edit 00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
Edit 00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
Edit 22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
Edit 55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
Edit 77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
Edit 99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
Edit 00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
Edit 12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
Edit 00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
Edit 00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
Edit 00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
Edit 00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
Edit 91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
Edit 11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
Edit 00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
Edit 43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
Edit 45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
Edit 92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
Edit 57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
Edit 57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
Edit 00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
Edit 00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
Edit 00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
Edit 11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
Edit 26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
Edit 77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
Edit 77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
Edit 88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
Edit 88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
Edit 88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
Edit 88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
Edit 99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
Edit 72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
Edit 57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
Edit 86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
Edit 46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
Edit 89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
Edit 00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
Edit 00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
Edit 90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
Edit 90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
Edit 90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
Edit 00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
Edit 99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
Edit 23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
Edit 99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
Edit 89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
Edit 00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
981-
Edit 88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
Edit 00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
Edit 22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
Edit 65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
Edit 87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
Edit 00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
Edit 01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
Edit 72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
Edit 00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
Edit 00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
Edit 00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
Edit 00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
Edit 00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
Edit 00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
Edit 00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
Edit 00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
Edit 11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
Edit 11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
Edit 22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
Edit 22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
Edit 23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
Edit 33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
Edit 45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
Edit 45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
Edit 55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
Edit 88- S SD 111 234-6545 s s KS 11234 True
7645
999-
Edit 88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
Edit 99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
Edit 99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
Edit 99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
Edit 99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
Edit 99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
Edit 99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
Edit 99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
Edit 99- One Microsoft Way Redmond CA 98005 False
5944
999-
Edit 99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
Edit 99- Mark Lodesones 850 546-5698 Micri Buenos Aires Argenti CA 98005 True
8888
999-
Edit 99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
Edit 99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
Edit 99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
Edit 99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
Edit 99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
Edit 99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
Edit 99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
Edit 99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
Edit 99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
Edit 99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
Edit 99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
Edit 99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd, suite
Edit 99- venzke glenn 847-995-8400 schaumburg IN 60173 True
520
9992
999-
Edit 99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
Edit 99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
Edit 99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
Edit 99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
Edit 99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
Edit 99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
Edit 99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
Edit 000-00-0000 ana Takeit 100 111-2333 1937 17th Ave Chuckle City TN 63841 False
Edit 000-00-0001 Yozzav phil 100 111-2222 Sixtengatan 16 shenzhen IN 51802 False
Edit 000-00-0002 Dear John 310 777-8375 123 No Way Smallville UT 34523 True
Edit 000-00-0003 MMM GoodKKKK 800 123-4569 Ext Way 123 •stanbul MO 80300 False
Edit 000-00-0004 Shit Maggie'sTeensfa 905 555-5544 123 Main street Mississaugadf KS 12345 False
Edit 000-00-0005 Nisse Pettersson 123 456-7890 jularbovägen Stockholm MD 12345 True
Edit 000-00-0006 Key Cindy Cla 858 555-1212 One San Diego Way 268 244 B IUH IPU OR 92139 False
Edit 000-00-0007 X T xiangTest 888 859-7845 12345 Hehaw Vermont TN 98005 True
Edit 000-00-0008 Hakan Erens 216 342-1111 Uskudar Istanbul MD 11111 False
Edit 000-00-0009 Hertz Jezebel 808 555-5555 17 Instant Oats Ct Benjaminia IN 98005 True
Edit 000-00-0010 REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
Edit 000-00-0011 Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
Edit 000-00-0012 Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
Edit 000-00-0013 Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
Edit 000-00-0014 maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
Edit 000-00-0015 Changc Zork 808 555-5555 On My Way Redmond CA 98005 False
Edit 000-00-0016 Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
Edit 000-00-0017 efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
Edit 000-00-0019 amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
Edit 000-00-0020 Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0021 The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0022 Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0023 Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
Edit 000-00-0024 Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
Edit 000-00-0025 Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
Edit 000-00-0026 Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
Edit 000-00-0027 RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
Edit 000-00-0028 Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
Edit 000-00-0029 Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
Edit 000-00-0030 Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
Edit 000-00-0031 qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0032 Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0033 Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
Edit 000-00-0034 Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
Edit 000-00-0035 The Clown Homey 554 444-1232 Circus Hell CA 33243 True
Edit 000-00-0036 Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
Edit 000-00-0037 Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-00-0038 Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
Edit 000-00-0039 Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0040 Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0041 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0042 Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0045 Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
Edit 000-00-0046 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0047 This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
Edit 000-00-0049 Bjorn is the man! CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
Edit 000-00-0050 Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
Edit 000-00-0051 Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0052 olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
Edit 000-00-0053 Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0054 Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0055 PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
Edit 000-00-0056 Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Gingerbread
Edit 000-00-0057 pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
Edit 000-00-0058 Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
Edit 000-00-0059 NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
Edit 000-00-0060 Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 000-00-0061 Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0062 Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0065 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0066 voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0067 Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0069 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0070 Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
Edit 000-00-0071 Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0072 Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
Edit 000-00-0077 Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
Edit 000-00-0078 doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
Edit 000-00-0079 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0080 Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0082 Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0085 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0088 ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0089 Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0090 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0091 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0092 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0098 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0099 Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0100 geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0101 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0110 Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0111 Rus Tome 808 555-5555 My Way Redmond CA 98005 False
Edit 000-00-0112 Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
Edit 000-00-0120 Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0122 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0123 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0125 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0199 Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0201 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0232 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0300 Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0325 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0350 Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0399 Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
Edit 000-00-0400 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0433 Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
Edit 000-00-0435 Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
Edit 000-00-0444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0456 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0483 Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0500 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0540 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0545 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0550 Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
Edit 000-00-0567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0578 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0655 Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 000-00-0666 Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
Edit 000-00-0690 aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0708 donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0765 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0777 Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
Edit 000-00-0789 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0800 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0898 Doe John 808 555-5555 old man's way Redmond CA 98005 False
Edit 000-00-0987 aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0999 al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
Edit 000-00-1000 moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 000-00-1001 pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
Edit 000-00-1002 Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1003 John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
Edit 000-00-1004 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1005 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1008 Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1110 Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-1111 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1112 Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
Edit 000-00-1116 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1119 Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1176 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1212 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1233 Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 000-00-1234 Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1237 Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1245 Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1255 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 000-00-1258 fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1324 Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
Edit 000-00-1394 Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
Edit 000-00-1500 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1602 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1700 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1972 ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
Edit 000-00-1973 Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1984 Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
Edit 000-00-1999 Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
Edit 000-00-2000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2121 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2154 Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2222 Doe John One Microsoft Way Redmond CA 98005 False
Edit 000-00-2223 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2274 zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2323 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2324 car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2555 Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
Edit 000-00-2678 Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2728 Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
Edit 000-00-2929 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3070 Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
Edit 000-00-3071 Tallada Pau 808 555-5555 Petit IPC PC 98005 True
Edit 000-00-3243 Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3245 dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3322 wowza wow 808 555-5555 here Redmond CA 98005 True
Edit 000-00-3333 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3985 Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 000-00-4000 jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4005 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 000-00-4200 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4325 Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
Edit 000-00-4344 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4345 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4352 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4444 Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4544 Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
Edit 000-00-4545 Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
Edit 000-00-4546 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4567 Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4959 Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
Edit 000-00-4999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-5000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-5555 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6512 Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-6542 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6543 Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6544 Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6548 Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6564 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6578 XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6615 Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6656 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6666 Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6676 Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 000-00-6969 Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-7474 R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
Edit 000-00-7532 Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-7676 abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
Edit 000-00-7734 Tester Beta 555 555-5555 By The River Toborville TN 07734 False
Edit 000-00-7777 c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-00-7858 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8524 Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
Edit 000-00-8528 dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
Edit 000-00-8550 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8564 tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-00-8756 Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8765 jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8884 Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8888 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8976 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9000 Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
Edit 000-00-9090 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9111 Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9123 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9191 Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
Edit 000-00-9229 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9281 KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-9568 pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9751 Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9874 Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
Edit 000-00-9878 sss33 John 808 922-8827 Way 322 CA 98005 False
Edit 000-00-9900 Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9902 pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
Edit 000-00-9909 Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9926 asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9932 Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9933 Mike This is greate! 808 922877 Honolulu HI CA 98005 False
Edit 000-00-9944 Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
Edit 000-00-9956 Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
Edit 000-00-9990 Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
Edit 000-00-9991 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9993 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 000-00-9999 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-0000 Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
Edit 000-01-0001 aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
Edit 000-01-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1111 Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1234 Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1974 Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
Edit 000-01-2000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-2222 ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-9999 ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-02-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-05-0001 Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-07-0000 Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-08-0000 Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-09-0000 Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-09-9834 Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-10-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-10-1546 los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-10-9999 qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-0000 aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-0001 Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-0010 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-11-0011 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-11-0450 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-1234 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-1299 Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
Edit 000-12-0000 Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-15-9999 Doe John 808 555-5555 One Microsoft Way CA 98005 True
Edit 000-20-0000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-20-0007 Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
Edit 000-20-0543 Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-21-0000 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-21-9523 Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
Edit 000-22-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-25-4256 Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-26-2626 Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-28-1000 Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
Edit 000-44-0000 Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-44-5555 Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-44-6666 Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
Edit 000-55-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-55-1234 blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-55-4239 Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-65-4321 Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
Edit 000-66-0000 Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
Edit 000-66-1234 Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
Edit 000-69-0069 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-76-1243 Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
Edit 000-77-0000 Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-77-0001 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-77-7777 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-78-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-86-0000 Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
Edit 000-88-0000 Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-88-0654 Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 000-88-1234 Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
Edit 000-90-0012 Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
Edit 000-90-0098 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-98-0000 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 000-99-0000 Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-99-0034 kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-99-0038 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-99-8888 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-99-8889 Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 000-99-9999 Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-0000 Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
Edit 001-00-0001 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-0021 Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
Edit 001-00-0125 harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-1000 Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
Edit 001-00-4321 Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-4322 Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
Edit 001-01-0000 Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 001-01-0001 a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-01-0011 sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
Edit 001-01-4323 Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
Edit 001-02-0004 xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-02-2223 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-10-0100 Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 001-61-0000 Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
Edit 001-62-0000 Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
Edit 001-99-0000 Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 004-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 005-00-0000 Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 006-88-6543 George B. 440 123-2345 One Middle Road Elyria OR 55505 False
Edit 007-00-7007 S Rams 808 555-5555 great Indian Bangalore IN 55555 False
Edit 007-01-0070 Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
Edit 007-12-0050 Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
Edit 009-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 010-00-0000 Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 010-00-6666 Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 010-01-0100 Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 010-01-9999 Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
Edit 010-10-1010 Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
Edit 010-20-0030 Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
Edit 010-60-7224 Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 011-00-0000 Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 011-00-0009 DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
Edit 011-00-1111 Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 011-01-9999 Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 011-11-1010 Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
Edit 011-11-9889 •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 011-11-9999 D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 012-03-0456 X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
Edit 012-34-5678 Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
Edit 017-01-0056 Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
Edit 017-11-0000 ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 020-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 020-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 022-00-0004 sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 022-10-0004 sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 023-00-0000 luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
Edit 040-00-0040 boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 042-42-0042 Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
Edit 050-00-0000 ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 056-00-7474 Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
Edit 056-00-9999 Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
Edit 056-99-9999 Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
Edit 060-00-0088 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 065-00-0000 Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 065-01-0000 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 065-02-0000 leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 090-00-1111 Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 090-04-6543 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 090-09-0909 ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
Edit 090-99-0990 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 099-00-9999 Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
Edit 099-99-9099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 099-99-9999 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 100-00-0000 Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0001 Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
Edit 100-00-0002 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0008 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0009 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0034 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0098 Doe John 808 555-5555 One Microsoft Way MI 98005 True
Ribeiro
Edit 100-00-0666 Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
Edit 100-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
Edit 100-00-1024 tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 100-00-7777 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-9991 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-02-0300 lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-10-0000 Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-10-0001 Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
Edit 100-10-1000 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-20-0300 Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
Edit 100-20-0301 Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
Edit 100-34-0049 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-50-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-50-0009 zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-55-0000 XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
Edit 100-99-0000 Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-99-0098 Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
Edit 101-01-0101 Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
Edit 101-01-1090 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 101-11-1010 gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
Edit 101-11-1111 Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 102-25-1254 •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
Edit 110-00-0011 Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 110-10-1233 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 110-98-0000 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 110-99-0099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-0000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-0034 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 111-00-0069 Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
Edit 111-00-0300 Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-1234 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-4444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-9999 Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
Edit 111-01-1234 Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-0123 kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
Edit 111-11-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-1111 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-1112 Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
Edit 111-11-1119 hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-1123 Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
Edit 111-11-1234 MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 111-11-2222 Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
Edit 111-11-2223 Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
Edit 111-11-2333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-7892 Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
Edit 111-11-9898 Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-9999 kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
Edit 111-12-1234 •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-12-2222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-13-1234 Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
Edit 111-22-1111 Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
Edit 111-22-1155 Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
Edit 111-22-1234 Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
Edit 111-22-2222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-22-3331 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-22-3333 Doe Jack 808 555-5555 Albert Austin OR 98005 False
Edit 111-22-3335 Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
Edit 111-22-3345 Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
Edit 111-22-4444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-22-5555 D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-24-3434 asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-43-0454 DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-50-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-99-0000 gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-99-1234 Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 111-99-9999 McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
Edit 112-23-9783 Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 112-23-9999 Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 112-55-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 120-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 120-00-1001 Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 120-08-0098 Busta Rime 808 555-5555 One No Way San Man KS 98005 False
Edit 121-00-0000 Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 121-10-1989 Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 121-12-3214 TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 121-22-1133 Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
Edit 121-80-5753 Does John23 2 One Microsoft Way1 Redmond CA 98005 True
Edit 122-12-1212 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 122-22-1234 test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
Edit 122-32-1111 akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-1111 Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-1212 Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-1234 Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
Edit 123-00-5432 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-06-4000 van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 123-11-1111 France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-11-2000 Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
Edit 123-12-0915 Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
Edit 123-12-1234 Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-12-1564 Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
Edit 123-12-2345 Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
Edit 123-12-3625 Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
Edit 123-12-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-12-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-16-7890 leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
Edit 123-22-1234 Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
Edit 123-33-3243 Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
Edit 123-33-3456 Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
Edit 123-44-4455 isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
Edit 123-44-9898 Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-45-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-45-3678 viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
Edit 123-45-6789 Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
Edit 123-45-6798 dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
Edit 123-45-7890 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-45-9876 Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-0007 Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-0008 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-7890 Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
Edit 123-59-6789 floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
Edit 123-64-0000 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 123-64-0001 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 123-89-9874 Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
Edit 123-90-0000 Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
Edit 123-99-9999 Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
Edit 127-85-2211 Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 131-31-3131 Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
Edit 140-09-0567 Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 142-25-3698 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 145-44-7914 Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
Edit 151-15-1515 Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 151-15-1516 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 151-15-1518 Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 154-45-8798 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 168-05-5911 P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 172-32-1176 White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
Edit 190-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 190-00-0006 A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
Edit 200-00-0000 Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
Edit 212-77-4567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 213-00-0002 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 213-46-8915 Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
Edit 220-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 222-00-1243 XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
Edit 222-12-1234 Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
Edit 222-12-3232 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 222-22-2222 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 222-22-2226 test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
Edit 222-88-2234 ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 224-45-9875 Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
Edit 230-00-0300 Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
Edit 232-56-5150 Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
Edit 233-44-5544 Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
Edit 234-34-3444 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 234-99-9999 qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
Edit 238-95-7766 Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
Edit 239-95-7766 Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 240-00-0000 Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 254-85-0000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 254-85-0500 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 267-41-2394 O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
Edit 269-54-0526 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 274-80-9391 HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
Edit 300-00-0001 Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 302-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 321-18-0231 xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 321-32-4321 Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
Edit 321-54-0987 Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
Edit 323-32-3233 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 323-66-5432 John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
Edit 324-45-4544 Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 327-00-2546 Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
Edit 332-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-00-0000 LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-00-0001 Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
Edit 333-00-1111 something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-22-6666 kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-30-3333 Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-31-3000 Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-33-1234 kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-33-3333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-33-3399 Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
Edit 341-22-1782 hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
Edit 343-33-0000 Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 345-67-0000 xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 348-88-3874 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 355-76-5317 Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
Edit 357-27-9870 Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
Edit 357-27-9873 Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
Edit 366-26-8404 LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
Edit 378-87-8737 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 394-00-9374 Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 395-26-2222 Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
Edit 399-99-3999 pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
Edit 400-00-0077 Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 409-56-7008 john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
Edit 427-17-2319 DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
Edit 432-00-0000 Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 440-90-7785 Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
Edit 443-00-0001 Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
Edit 443-23-5543 Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
Edit 444-44-4444 Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
Edit 445-00-0055 Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
Edit 446-44-4447 Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
Edit 454-21-3478 V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
Edit 454-21-8465 Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 456-99-0000 DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 472-27-2349 Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
Edit 486-29-1786 Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
Edit 500-00-0092 Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 527-72-3246 Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
Edit 555-00-5555 Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 555-11-2222 Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
Edit 555-12-5555 SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
Edit 555-44-5567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-55-5554 Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-55-5555 Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
Edit 555-55-5559 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-66-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-66-2222 Doe Pete 808 555-5555 happy days Redmond CA 98005 False
Edit 555-98-9855 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 564-00-0001 Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
Edit 585-88-9852 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 600-00-0001 Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
Edit 625-00-0000 Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
Edit 634-23-7895 Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 648-92-1872 Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
Edit 664-21-1125 Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
Edit 666-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-00-0088 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-00-0666 al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
Edit 666-55-8888 Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
Edit 666-66-6665 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-66-6666 Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
Edit 666-66-6969 Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
Edit 666-66-7777 LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-66-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-99-0666 Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-99-5655 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 672-71-3249 Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
Edit 696-69-6969 Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
Edit 700-00-1234 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 700-00-1235 Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 712-45-1867 del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
Edit 722-51-5454 DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
Edit 724-80-9391 MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
Edit 736-83-3231 Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 745-65-6578 Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
Edit 756-30-7391 Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
Edit 758-00-8888 gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
Edit 764-98-2345 Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 770-00-0000 Doe John 808 555-0055 One Microsoft Way CA 98005 False
Edit 777-00-0000 olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 777-22-3333 I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 777-55-1234 Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
Edit 777-77-7777 Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
Edit 777-99-7777 Huba Haba 555-555-5555 known Street Mexico CA 03100 False
Edit 787-00-0999 hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 789-12-4567 Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
Edit 800-00-0000 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 800-00-0008 Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
Edit 800-00-8888 gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
Edit 800-00-8889 Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 800-00-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 807-91-6654 Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
Edit 808-11-8088 McEwan Robert 808 123-8888 One My Way LA CA 98052 True
Edit 809-00-0111 V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 825-43-1234 SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
Edit 829-45-6587 Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 846-92-7186 Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
Edit 847-57-1348 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 847-57-1349 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
Edit 888-00-0000 Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-00-8877 Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
Edit 888-11-8888 Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-26-7143 Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-77-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-77-8888 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-88-8881 Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 888-88-8888 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-88-8889 Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 888-88-9999 zzz hhh 800 123-4567 life Redmond CA 98065 True
Edit 888-99-9999 Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
Edit 893-72-1158 McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
Edit 895-57-5418 Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 895-86-8759 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 899-46-2035 Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
Edit 899-89-8989 Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 900-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-00-0001 Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-00-0003 Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 900-00-1111 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-00-8000 a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-90-9000 Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
Edit 900-99-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 901-90-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 902-90-0001 Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 908-00-0000 Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 909-99-3333 Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 912-00-0099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 928-23-1324 Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
Edit 953-99-0928 Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
Edit 978-89-8070 Saevik Erling Antoni 92929292 Test Test CA 98005 False
Edit 980-00-9999 pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 981-88-9898 Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 987-00-9999 Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 987-22-3344 Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
Edit 987-65-4321 •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
Edit 987-87-9876 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 990-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 990-00-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 995-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 998-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 998-01-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 998-72-3567 Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
Edit 999-00-0000 aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-0001 obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 999-00-0009 Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-0010 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
Edit 999-00-0011 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-0987 Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
Edit 999-00-2222 Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
Edit 999-00-8903 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-9999 Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
Edit 999-11-0100 Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-11-1001 blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-22-0000 DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-22-9999 andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-23-0577 Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
Edit 999-33-3245 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-45-1324 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-45-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-55-2564 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-88-7777 Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0000 Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0001 Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
Edit 999-99-0009 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0165 Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0191 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-1111 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-1112 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-1234 hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
Edit 999-99-3998 Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
Edit 999-99-5724 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-5758 monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 999-99-5945 caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9199 chen yin 808 555-5555 test Redmond CA 98005 False
Edit 999-99-9678 Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9910 Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9911 Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
Edit 999-99-9912 Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9913 hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9914 Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
Edit 999-99-9977 Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9988 yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9989 Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9990 schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
Edit 999-99-9991 lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9993 myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
Edit 999-99-9994 mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
Edit 999-99-9995 Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
Edit 999-99-9996 akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9997 Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9999 Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
Edit 000-00-0000 ana Takeit 100 111-2333 1937 17th Ave Chuckle City TN 63841 False
Edit 000-00-0001 Yozzav phil 100 111-2222 Sixtengatan 16 shenzhen IN 51802 False
Edit 000-00-0002 Dear John 310 777-8375 123 No Way Smallville UT 34523 True
Edit 000-00-0003 MMM GoodKKKK 800 123-4569 Ext Way 123 •stanbul MO 80300 False
Edit 000-00-0004 Shit Maggie'sTeensfa 905 555-5544 123 Main street Mississaugadf KS 12345 False
Edit 000-00-0005 Nisse Pettersson 123 456-7890 jularbovägen Stockholm MD 12345 True
Edit 000-00-0006 Key Cindy Cla 858 555-1212 One San Diego Way 268 244 B IUH IPU OR 92139 False
Edit 000-00-0007 X T xiangTest 888 859-7845 12345 Hehaw Vermont TN 98005 True
Edit 000-00-0008 Hakan Erens 216 342-1111 Uskudar Istanbul MD 11111 False
Edit 000-00-0009 Hertz Jezebel 808 555-5555 17 Instant Oats Ct Benjaminia IN 98005 True
Edit 000-00-0010 REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
Edit 000-00-0011 Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
Edit 000-00-0012 Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
Edit 000-00-0013 Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
Edit 000-00-0014 maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
Edit 000-00-0015 Changc Zork 808 555-5555 On My Way Redmond CA 98005 False
Edit 000-00-0016 Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
Edit 000-00-0017 efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
Edit 000-00-0019 amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
Edit 000-00-0020 Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0021 The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0022 Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0023 Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
Edit 000-00-0024 Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
Edit 000-00-0025 Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
Edit 000-00-0026 Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
Edit 000-00-0027 RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
Edit 000-00-0028 Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
Edit 000-00-0029 Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
Edit 000-00-0030 Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
Edit 000-00-0031 qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0032 Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0033 Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
Edit 000-00-0034 Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
Edit 000-00-0035 The Clown Homey 554 444-1232 Circus Hell CA 33243 True
Edit 000-00-0036 Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
Edit 000-00-0037 Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-00-0038 Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
Edit 000-00-0039 Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0040 Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0041 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0042 Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0045 Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
Edit 000-00-0046 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0047 This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
Edit 000-00-0049 Bjorn is the man! CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
Edit 000-00-0050 Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
Edit 000-00-0051 Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0052 olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
Edit 000-00-0053 Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0054 Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0055 PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
Edit 000-00-0056 Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Gingerbread
Edit 000-00-0057 pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
Edit 000-00-0058 Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
Edit 000-00-0059 NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
Edit 000-00-0060 Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 000-00-0061 Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0062 Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0065 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0066 voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0067 Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0069 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0070 Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
Edit 000-00-0071 Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0072 Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
Edit 000-00-0077 Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
Edit 000-00-0078 doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
Edit 000-00-0079 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0080 Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0082 Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0085 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0088 ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0089 Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0090 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0091 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0092 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0098 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0099 Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0100 geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0101 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0110 Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0111 Rus Tome 808 555-5555 My Way Redmond CA 98005 False
Edit 000-00-0112 Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
Edit 000-00-0120 Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0122 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0123 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0125 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0199 Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0201 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0232 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0300 Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0325 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0350 Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0399 Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
Edit 000-00-0400 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0433 Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
Edit 000-00-0435 Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
Edit 000-00-0444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0456 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0483 Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0500 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0540 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0545 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0550 Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
Edit 000-00-0567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0578 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0655 Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 000-00-0666 Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
Edit 000-00-0690 aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0708 donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0765 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0777 Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
Edit 000-00-0789 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0800 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0898 Doe John 808 555-5555 old man's way Redmond CA 98005 False
Edit 000-00-0987 aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0999 al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
Edit 000-00-1000 moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 000-00-1001 pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
Edit 000-00-1002 Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1003 John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
Edit 000-00-1004 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1005 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1008 Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1110 Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-1111 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1112 Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
Edit 000-00-1116 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1119 Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1176 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1212 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1233 Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 000-00-1234 Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1237 Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1245 Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1255 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 000-00-1258 fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1324 Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
Edit 000-00-1394 Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
Edit 000-00-1500 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1602 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1700 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1972 ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
Edit 000-00-1973 Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1984 Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
Edit 000-00-1999 Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
Edit 000-00-2000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2121 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2154 Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2222 Doe John One Microsoft Way Redmond CA 98005 False
Edit 000-00-2223 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2274 zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2323 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2324 car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2555 Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
Edit 000-00-2678 Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2728 Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
Edit 000-00-2929 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3070 Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
Edit 000-00-3071 Tallada Pau 808 555-5555 Petit IPC PC 98005 True
Edit 000-00-3243 Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3245 dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3322 wowza wow 808 555-5555 here Redmond CA 98005 True
Edit 000-00-3333 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3985 Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 000-00-4000 jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4005 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 000-00-4200 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4325 Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
Edit 000-00-4344 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4345 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4352 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4444 Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4544 Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
Edit 000-00-4545 Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
Edit 000-00-4546 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4567 Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4959 Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
Edit 000-00-4999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-5000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-5555 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6512 Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-6542 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6543 Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6544 Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6548 Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6564 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6578 XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6615 Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6656 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6666 Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6676 Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 000-00-6969 Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-7474 R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
Edit 000-00-7532 Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-7676 abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
Edit 000-00-7734 Tester Beta 555 555-5555 By The River Toborville TN 07734 False
Edit 000-00-7777 c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-00-7858 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8524 Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
Edit 000-00-8528 dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
Edit 000-00-8550 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8564 tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-00-8756 Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8765 jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8884 Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8888 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8976 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9000 Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
Edit 000-00-9090 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9111 Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9123 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9191 Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
Edit 000-00-9229 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9281 KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-9568 pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9751 Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9874 Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
Edit 000-00-9878 sss33 John 808 922-8827 Way 322 CA 98005 False
Edit 000-00-9900 Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9902 pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
Edit 000-00-9909 Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9926 asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9932 Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9933 Mike This is greate! 808 922877 Honolulu HI CA 98005 False
Edit 000-00-9944 Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
Edit 000-00-9956 Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
Edit 000-00-9990 Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
Edit 000-00-9991 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9993 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 000-00-9999 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-0000 Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
Edit 000-01-0001 aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
Edit 000-01-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1111 Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1234 Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1974 Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
Edit 000-01-2000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-2222 ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-9999 ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-02-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-05-0001 Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-07-0000 Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-08-0000 Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-09-0000 Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-09-9834 Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-10-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-10-1546 los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-10-9999 qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-0000 aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-0001 Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-0010 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-11-0011 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-11-0450 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-1234 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-1299 Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
Edit 000-12-0000 Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-15-9999 Doe John 808 555-5555 One Microsoft Way CA 98005 True
Edit 000-20-0000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-20-0007 Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
Edit 000-20-0543 Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-21-0000 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-21-9523 Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
Edit 000-22-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-25-4256 Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-26-2626 Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-28-1000 Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
Edit 000-44-0000 Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-44-5555 Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-44-6666 Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
Edit 000-55-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-55-1234 blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-55-4239 Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-65-4321 Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
Edit 000-66-0000 Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
Edit 000-66-1234 Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
Edit 000-69-0069 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-76-1243 Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
Edit 000-77-0000 Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-77-0001 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-77-7777 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-78-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-86-0000 Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
Edit 000-88-0000 Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-88-0654 Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 000-88-1234 Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
Edit 000-90-0012 Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
Edit 000-90-0098 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-98-0000 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 000-99-0000 Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-99-0034 kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-99-0038 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-99-8888 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-99-8889 Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 000-99-9999 Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-0000 Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
Edit 001-00-0001 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-0021 Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
Edit 001-00-0125 harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-1000 Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
Edit 001-00-4321 Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-4322 Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
Edit 001-01-0000 Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 001-01-0001 a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-01-0011 sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
Edit 001-01-4323 Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
Edit 001-02-0004 xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-02-2223 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-10-0100 Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 001-61-0000 Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
Edit 001-62-0000 Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
Edit 001-99-0000 Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 004-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 005-00-0000 Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 006-88-6543 George B. 440 123-2345 One Middle Road Elyria OR 55505 False
Edit 007-00-7007 S Rams 808 555-5555 great Indian Bangalore IN 55555 False
Edit 007-01-0070 Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
Edit 007-12-0050 Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
Edit 009-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 010-00-0000 Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 010-00-6666 Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 010-01-0100 Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 010-01-9999 Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
Edit 010-10-1010 Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
Edit 010-20-0030 Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
Edit 010-60-7224 Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 011-00-0000 Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 011-00-0009 DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
Edit 011-00-1111 Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 011-01-9999 Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 011-11-1010 Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
Edit 011-11-9889 •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 011-11-9999 D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 012-03-0456 X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
Edit 012-34-5678 Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
Edit 017-01-0056 Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
Edit 017-11-0000 ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 020-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 020-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 022-00-0004 sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 022-10-0004 sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 023-00-0000 luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
Edit 040-00-0040 boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 042-42-0042 Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
Edit 050-00-0000 ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 056-00-7474 Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
Edit 056-00-9999 Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
Edit 056-99-9999 Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
Edit 060-00-0088 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 065-00-0000 Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 065-01-0000 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 065-02-0000 leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 090-00-1111 Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 090-04-6543 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 090-09-0909 ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
Edit 090-99-0990 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 099-00-9999 Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
Edit 099-99-9099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 099-99-9999 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 100-00-0000 Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0001 Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
Edit 100-00-0002 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0008 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0009 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0034 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0098 Doe John 808 555-5555 One Microsoft Way MI 98005 True
Ribeiro
Edit 100-00-0666 Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
Edit 100-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
Edit 100-00-1024 tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 100-00-7777 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-9991 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-02-0300 lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-10-0000 Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-10-0001 Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
Edit 100-10-1000 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-20-0300 Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
Edit 100-20-0301 Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
Edit 100-34-0049 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-50-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-50-0009 zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-55-0000 XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
Edit 100-99-0000 Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-99-0098 Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
Edit 101-01-0101 Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
Edit 101-01-1090 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 101-11-1010 gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
Edit 101-11-1111 Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 102-25-1254 •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
Edit 110-00-0011 Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 110-10-1233 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 110-98-0000 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 110-99-0099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-0000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-0034 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 111-00-0069 Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
Edit 111-00-0300 Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-1234 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-4444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-9999 Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
Edit 111-01-1234 Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-0123 kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
Edit 111-11-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-1111 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-1112 Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
Edit 111-11-1119 hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-1123 Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
Edit 111-11-1234 MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 111-11-2222 Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
Edit 111-11-2223 Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
Edit 111-11-2333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-7892 Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
Edit 111-11-9898 Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-9999 kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
Edit 111-12-1234 •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-12-2222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-13-1234 Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
Edit 111-22-1111 Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
Edit 111-22-1155 Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
Edit 111-22-1234 Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
Edit 111-22-2222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-22-3331 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-22-3333 Doe Jack 808 555-5555 Albert Austin OR 98005 False
Edit 111-22-3335 Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
Edit 111-22-3345 Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
Edit 111-22-4444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-22-5555 D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-24-3434 asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-43-0454 DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-50-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-99-0000 gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-99-1234 Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 111-99-9999 McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
Edit 112-23-9783 Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 112-23-9999 Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 112-55-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 120-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 120-00-1001 Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 120-08-0098 Busta Rime 808 555-5555 One No Way San Man KS 98005 False
Edit 121-00-0000 Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 121-10-1989 Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 121-12-3214 TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 121-22-1133 Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
Edit 121-80-5753 Does John23 2 One Microsoft Way1 Redmond CA 98005 True
Edit 122-12-1212 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 122-22-1234 test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
Edit 122-32-1111 akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-1111 Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-1212 Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-1234 Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
Edit 123-00-5432 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-06-4000 van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 123-11-1111 France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-11-2000 Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
Edit 123-12-0915 Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
Edit 123-12-1234 Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-12-1564 Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
Edit 123-12-2345 Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
Edit 123-12-3625 Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
Edit 123-12-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-12-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-16-7890 leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
Edit 123-22-1234 Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
Edit 123-33-3243 Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
Edit 123-33-3456 Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
Edit 123-44-4455 isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
Edit 123-44-9898 Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-45-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-45-3678 viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
Edit 123-45-6789 Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
Edit 123-45-6798 dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
Edit 123-45-7890 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-45-9876 Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-0007 Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-0008 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-7890 Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
Edit 123-59-6789 floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
Edit 123-64-0000 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 123-64-0001 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 123-89-9874 Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
Edit 123-90-0000 Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
Edit 123-99-9999 Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
Edit 127-85-2211 Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 131-31-3131 Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
Edit 140-09-0567 Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 142-25-3698 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 145-44-7914 Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
Edit 151-15-1515 Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 151-15-1516 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 151-15-1518 Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 154-45-8798 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 168-05-5911 P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 172-32-1176 White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
Edit 190-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 190-00-0006 A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
Edit 200-00-0000 Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
Edit 212-77-4567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 213-00-0002 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 213-46-8915 Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
Edit 220-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 222-00-1243 XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
Edit 222-12-1234 Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
Edit 222-12-3232 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 222-22-2222 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 222-22-2226 test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
Edit 222-88-2234 ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 224-45-9875 Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
Edit 230-00-0300 Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
Edit 232-56-5150 Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
Edit 233-44-5544 Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
Edit 234-34-3444 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 234-99-9999 qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
Edit 238-95-7766 Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
Edit 239-95-7766 Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 240-00-0000 Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 254-85-0000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 254-85-0500 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 267-41-2394 O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
Edit 269-54-0526 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 274-80-9391 HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
Edit 300-00-0001 Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 302-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 321-18-0231 xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 321-32-4321 Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
Edit 321-54-0987 Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
Edit 323-32-3233 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 323-66-5432 John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
Edit 324-45-4544 Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 327-00-2546 Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
Edit 332-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-00-0000 LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-00-0001 Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
Edit 333-00-1111 something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-22-6666 kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-30-3333 Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-31-3000 Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-33-1234 kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-33-3333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-33-3399 Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
Edit 341-22-1782 hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
Edit 343-33-0000 Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 345-67-0000 xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 348-88-3874 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 355-76-5317 Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
Edit 357-27-9870 Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
Edit 357-27-9873 Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
Edit 366-26-8404 LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
Edit 378-87-8737 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 394-00-9374 Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 395-26-2222 Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
Edit 399-99-3999 pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
Edit 400-00-0077 Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 409-56-7008 john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
Edit 427-17-2319 DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
Edit 432-00-0000 Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 440-90-7785 Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
Edit 443-00-0001 Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
Edit 443-23-5543 Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
Edit 444-44-4444 Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
Edit 445-00-0055 Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
Edit 446-44-4447 Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
Edit 454-21-3478 V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
Edit 454-21-8465 Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 456-99-0000 DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 472-27-2349 Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
Edit 486-29-1786 Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
Edit 500-00-0092 Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 527-72-3246 Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
Edit 555-00-5555 Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 555-11-2222 Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
Edit 555-12-5555 SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
Edit 555-44-5567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-55-5554 Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-55-5555 Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
Edit 555-55-5559 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-66-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-66-2222 Doe Pete 808 555-5555 happy days Redmond CA 98005 False
Edit 555-98-9855 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 564-00-0001 Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
Edit 585-88-9852 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 600-00-0001 Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
Edit 625-00-0000 Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
Edit 634-23-7895 Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 648-92-1872 Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
Edit 664-21-1125 Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
Edit 666-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-00-0088 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-00-0666 al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
Edit 666-55-8888 Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
Edit 666-66-6665 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-66-6666 Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
Edit 666-66-6969 Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
Edit 666-66-7777 LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-66-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-99-0666 Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-99-5655 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 672-71-3249 Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
Edit 696-69-6969 Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
Edit 700-00-1234 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 700-00-1235 Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 712-45-1867 del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
Edit 722-51-5454 DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
Edit 724-80-9391 MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
Edit 736-83-3231 Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 745-65-6578 Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
Edit 756-30-7391 Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
Edit 758-00-8888 gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
Edit 764-98-2345 Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 770-00-0000 Doe John 808 555-0055 One Microsoft Way CA 98005 False
Edit 777-00-0000 olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 777-22-3333 I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 777-55-1234 Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
Edit 777-77-7777 Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
Edit 777-99-7777 Huba Haba 555-555-5555 known Street Mexico CA 03100 False
Edit 787-00-0999 hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 789-12-4567 Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
Edit 800-00-0000 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 800-00-0008 Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
Edit 800-00-8888 gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
Edit 800-00-8889 Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 800-00-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 807-91-6654 Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
Edit 808-11-8088 McEwan Robert 808 123-8888 One My Way LA CA 98052 True
Edit 809-00-0111 V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 825-43-1234 SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
Edit 829-45-6587 Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 846-92-7186 Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
Edit 847-57-1348 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 847-57-1349 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
Edit 888-00-0000 Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-00-8877 Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
Edit 888-11-8888 Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-26-7143 Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-77-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-77-8888 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-88-8881 Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 888-88-8888 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-88-8889 Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 888-88-9999 zzz hhh 800 123-4567 life Redmond CA 98065 True
Edit 888-99-9999 Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
Edit 893-72-1158 McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
Edit 895-57-5418 Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 895-86-8759 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 899-46-2035 Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
Edit 899-89-8989 Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 900-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-00-0001 Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-00-0003 Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 900-00-1111 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-00-8000 a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-90-9000 Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
Edit 900-99-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 901-90-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 902-90-0001 Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 908-00-0000 Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 909-99-3333 Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 912-00-0099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 928-23-1324 Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
Edit 953-99-0928 Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
Edit 978-89-8070 Saevik Erling Antoni 92929292 Test Test CA 98005 False
Edit 980-00-9999 pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 981-88-9898 Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 987-00-9999 Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 987-22-3344 Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
Edit 987-65-4321 •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
Edit 987-87-9876 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 990-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 990-00-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 995-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 998-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 998-01-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 998-72-3567 Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
Edit 999-00-0000 aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-0001 obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 999-00-0009 Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-0010 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
Edit 999-00-0011 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-0987 Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
Edit 999-00-2222 Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
Edit 999-00-8903 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-9999 Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
Edit 999-11-0100 Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-11-1001 blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-22-0000 DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-22-9999 andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-23-0577 Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
Edit 999-33-3245 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-45-1324 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-45-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-55-2564 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-88-7777 Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0000 Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0001 Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
Edit 999-99-0009 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0165 Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0191 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-1111 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-1112 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-1234 hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
Edit 999-99-3998 Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
Edit 999-99-5724 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-5758 monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 999-99-5945 caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9199 chen yin 808 555-5555 test Redmond CA 98005 False
Edit 999-99-9678 Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9910 Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9911 Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
Edit 999-99-9912 Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9913 hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9914 Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
Edit 999-99-9977 Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9988 yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9989 Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9990 schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
Edit 999-99-9991 lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9993 myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
Edit 999-99-9994 mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
Edit 999-99-9995 Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
Edit 999-99-9996 akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9997 Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9999 Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
Edit 000-00-0000 ana Takeit 100 111-2333 1937 17th Ave Chuckle City TN 63841 False
Edit 000-00-0001 Yozzav phil 100 111-2222 Sixtengatan 16 shenzhen IN 51802 False
Edit 000-00-0002 Dear John 310 777-8375 123 No Way Smallville UT 34523 True
Edit 000-00-0003 MMM GoodKKKK 800 123-4569 Ext Way 123 •stanbul MO 80300 False
Edit 000-00-0004 Shit Maggie'sTeensfa 905 555-5544 123 Main street Mississaugadf KS 12345 False
Edit 000-00-0005 Nisse Pettersson 123 456-7890 jularbovägen Stockholm MD 12345 True
Edit 000-00-0006 Key Cindy Cla 858 555-1212 One San Diego Way 268 244 B IUH IPU OR 92139 False
Edit 000-00-0007 X T xiangTest 888 859-7845 12345 Hehaw Vermont TN 98005 True
Edit 000-00-0008 Hakan Erens 216 342-1111 Uskudar Istanbul MD 11111 False
Edit 000-00-0009 Hertz Jezebel 808 555-5555 17 Instant Oats Ct Benjaminia IN 98005 True
Edit 000-00-0010 REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
Edit 000-00-0011 Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
Edit 000-00-0012 Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
Edit 000-00-0013 Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
Edit 000-00-0014 maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
Edit 000-00-0015 Changc Zork 808 555-5555 On My Way Redmond CA 98005 False
Edit 000-00-0016 Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
Edit 000-00-0017 efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
Edit 000-00-0019 amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
Edit 000-00-0020 Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0021 The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0022 Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0023 Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
Edit 000-00-0024 Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
Edit 000-00-0025 Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
Edit 000-00-0026 Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
Edit 000-00-0027 RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
Edit 000-00-0028 Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
Edit 000-00-0029 Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
Edit 000-00-0030 Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
Edit 000-00-0031 qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0032 Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0033 Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
Edit 000-00-0034 Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
Edit 000-00-0035 The Clown Homey 554 444-1232 Circus Hell CA 33243 True
Edit 000-00-0036 Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
Edit 000-00-0037 Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-00-0038 Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
Edit 000-00-0039 Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0040 Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0041 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0042 Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0045 Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
Edit 000-00-0046 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0047 This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
Edit 000-00-0049 Bjorn is the man! CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
Edit 000-00-0050 Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
Edit 000-00-0051 Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0052 olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
Edit 000-00-0053 Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0054 Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0055 PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
Edit 000-00-0056 Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Gingerbread
Edit 000-00-0057 pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
Edit 000-00-0058 Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
Edit 000-00-0059 NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
Edit 000-00-0060 Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 000-00-0061 Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0062 Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0065 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0066 voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0067 Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0069 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0070 Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
Edit 000-00-0071 Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0072 Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
Edit 000-00-0077 Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
Edit 000-00-0078 doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
Edit 000-00-0079 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0080 Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0082 Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0085 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0088 ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0089 Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0090 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0091 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0092 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0098 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0099 Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0100 geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0101 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0110 Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0111 Rus Tome 808 555-5555 My Way Redmond CA 98005 False
Edit 000-00-0112 Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
Edit 000-00-0120 Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0122 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0123 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0125 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0199 Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0201 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0232 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0300 Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0325 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0350 Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0399 Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
Edit 000-00-0400 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0433 Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
Edit 000-00-0435 Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
Edit 000-00-0444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0456 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0483 Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0500 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0540 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0545 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0550 Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
Edit 000-00-0567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0578 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0655 Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 000-00-0666 Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
Edit 000-00-0690 aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0708 donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0765 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-0777 Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
Edit 000-00-0789 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0800 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0898 Doe John 808 555-5555 old man's way Redmond CA 98005 False
Edit 000-00-0987 aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-0999 al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
Edit 000-00-1000 moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 000-00-1001 pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
Edit 000-00-1002 Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1003 John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
Edit 000-00-1004 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1005 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1008 Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1110 Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-1111 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1112 Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
Edit 000-00-1116 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1119 Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1176 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1212 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1233 Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 000-00-1234 Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1237 Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1245 Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1255 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 000-00-1258 fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1324 Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
Edit 000-00-1394 Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
Edit 000-00-1500 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1602 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1700 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1972 ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
Edit 000-00-1973 Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-1984 Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
Edit 000-00-1999 Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
Edit 000-00-2000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2121 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2154 Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2222 Doe John One Microsoft Way Redmond CA 98005 False
Edit 000-00-2223 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2274 zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2323 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2324 car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2555 Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
Edit 000-00-2678 Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-2728 Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
Edit 000-00-2929 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3070 Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
Edit 000-00-3071 Tallada Pau 808 555-5555 Petit IPC PC 98005 True
Edit 000-00-3243 Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3245 dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3322 wowza wow 808 555-5555 here Redmond CA 98005 True
Edit 000-00-3333 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-3985 Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 000-00-4000 jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4005 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 000-00-4200 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4325 Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
Edit 000-00-4344 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4345 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4352 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4444 Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4544 Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
Edit 000-00-4545 Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
Edit 000-00-4546 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4567 Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-4959 Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
Edit 000-00-4999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-5000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-5555 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6512 Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-6542 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6543 Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6544 Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6548 Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6564 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6578 XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6615 Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6656 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6666 Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6676 Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 000-00-6969 Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-6999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-7474 R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
Edit 000-00-7532 Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-7676 abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
Edit 000-00-7734 Tester Beta 555 555-5555 By The River Toborville TN 07734 False
Edit 000-00-7777 c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-00-7858 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8524 Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
Edit 000-00-8528 dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
Edit 000-00-8550 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8564 tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-00-8756 Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8765 jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8884 Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8888 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-8976 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9000 Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
Edit 000-00-9090 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9111 Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9123 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9191 Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
Edit 000-00-9229 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9281 KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-00-9568 pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9751 Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9874 Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
Edit 000-00-9878 sss33 John 808 922-8827 Way 322 CA 98005 False
Edit 000-00-9900 Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9902 pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
Edit 000-00-9909 Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9926 asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9932 Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9933 Mike This is greate! 808 922877 Honolulu HI CA 98005 False
Edit 000-00-9944 Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
Edit 000-00-9956 Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
Edit 000-00-9990 Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
Edit 000-00-9991 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-00-9993 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 000-00-9999 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-0000 Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
Edit 000-01-0001 aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
Edit 000-01-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1111 Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1234 Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-1974 Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
Edit 000-01-2000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-2222 ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-01-9999 ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-02-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-05-0001 Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-07-0000 Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-08-0000 Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-09-0000 Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-09-9834 Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-10-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-10-1546 los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-10-9999 qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-0000 aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-0001 Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-0010 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-11-0011 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-11-0450 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-1234 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-11-1299 Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
Edit 000-12-0000 Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-15-9999 Doe John 808 555-5555 One Microsoft Way CA 98005 True
Edit 000-20-0000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-20-0007 Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
Edit 000-20-0543 Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-21-0000 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-21-9523 Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
Edit 000-22-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-25-4256 Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-26-2626 Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-28-1000 Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
Edit 000-44-0000 Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-44-5555 Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-44-6666 Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
Edit 000-55-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-55-1234 blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-55-4239 Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-65-4321 Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
Edit 000-66-0000 Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
Edit 000-66-1234 Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
Edit 000-69-0069 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-76-1243 Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
Edit 000-77-0000 Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-77-0001 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-77-7777 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-78-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-86-0000 Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
Edit 000-88-0000 Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 000-88-0654 Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 000-88-1234 Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
Edit 000-90-0012 Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
Edit 000-90-0098 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-98-0000 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 000-99-0000 Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 000-99-0034 kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-99-0038 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-99-8888 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 000-99-8889 Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 000-99-9999 Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-0000 Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
Edit 001-00-0001 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-0021 Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
Edit 001-00-0125 harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-1000 Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
Edit 001-00-4321 Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-00-4322 Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
Edit 001-01-0000 Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 001-01-0001 a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-01-0011 sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
Edit 001-01-4323 Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
Edit 001-02-0004 xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-02-2223 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 001-10-0100 Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 001-61-0000 Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
Edit 001-62-0000 Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
Edit 001-99-0000 Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 004-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 005-00-0000 Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 006-88-6543 George B. 440 123-2345 One Middle Road Elyria OR 55505 False
Edit 007-00-7007 S Rams 808 555-5555 great Indian Bangalore IN 55555 False
Edit 007-01-0070 Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
Edit 007-12-0050 Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
Edit 009-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 010-00-0000 Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 010-00-6666 Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 010-01-0100 Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 010-01-9999 Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
Edit 010-10-1010 Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
Edit 010-20-0030 Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
Edit 010-60-7224 Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 011-00-0000 Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 011-00-0009 DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
Edit 011-00-1111 Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 011-01-9999 Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 011-11-1010 Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
Edit 011-11-9889 •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 011-11-9999 D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 012-03-0456 X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
Edit 012-34-5678 Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
Edit 017-01-0056 Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
Edit 017-11-0000 ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 020-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 020-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 022-00-0004 sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 022-10-0004 sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 023-00-0000 luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
Edit 040-00-0040 boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 042-42-0042 Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
Edit 050-00-0000 ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 056-00-7474 Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
Edit 056-00-9999 Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
Edit 056-99-9999 Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
Edit 060-00-0088 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 065-00-0000 Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 065-01-0000 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 065-02-0000 leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 090-00-1111 Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 090-04-6543 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 090-09-0909 ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
Edit 090-99-0990 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 099-00-9999 Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
Edit 099-99-9099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 099-99-9999 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 100-00-0000 Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0001 Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
Edit 100-00-0002 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0008 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0009 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0034 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-0098 Doe John 808 555-5555 One Microsoft Way MI 98005 True
Ribeiro
Edit 100-00-0666 Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
Edit 100-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
Edit 100-00-1024 tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 100-00-7777 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-00-9991 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-02-0300 lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-10-0000 Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-10-0001 Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
Edit 100-10-1000 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-20-0300 Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
Edit 100-20-0301 Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
Edit 100-34-0049 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-50-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-50-0009 zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-55-0000 XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
Edit 100-99-0000 Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 100-99-0098 Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
Edit 101-01-0101 Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
Edit 101-01-1090 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 101-11-1010 gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
Edit 101-11-1111 Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 102-25-1254 •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
Edit 110-00-0011 Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 110-10-1233 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 110-98-0000 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Edit 110-99-0099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-0000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-0034 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 111-00-0069 Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
Edit 111-00-0300 Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-1234 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-4444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-00-9999 Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
Edit 111-01-1234 Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-0123 kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
Edit 111-11-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-1111 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-1112 Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
Edit 111-11-1119 hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-1123 Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
Edit 111-11-1234 MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 111-11-2222 Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
Edit 111-11-2223 Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
Edit 111-11-2333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-7892 Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
Edit 111-11-9898 Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-11-9999 kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
Edit 111-12-1234 •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-12-2222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-13-1234 Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
Edit 111-22-1111 Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
Edit 111-22-1155 Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
Edit 111-22-1234 Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
Edit 111-22-2222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-22-3331 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-22-3333 Doe Jack 808 555-5555 Albert Austin OR 98005 False
Edit 111-22-3335 Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
Edit 111-22-3345 Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
Edit 111-22-4444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-22-5555 D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-24-3434 asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-43-0454 DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-50-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-99-0000 gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 111-99-1234 Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 111-99-9999 McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
Edit 112-23-9783 Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 112-23-9999 Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 112-55-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 120-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 120-00-1001 Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 120-08-0098 Busta Rime 808 555-5555 One No Way San Man KS 98005 False
Edit 121-00-0000 Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 121-10-1989 Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 121-12-3214 TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 121-22-1133 Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
Edit 121-80-5753 Does John23 2 One Microsoft Way1 Redmond CA 98005 True
Edit 122-12-1212 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 122-22-1234 test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
Edit 122-32-1111 akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-1111 Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-1212 Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-00-1234 Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
Edit 123-00-5432 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-06-4000 van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 123-11-1111 France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-11-2000 Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
Edit 123-12-0915 Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
Edit 123-12-1234 Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-12-1564 Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
Edit 123-12-2345 Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
Edit 123-12-3625 Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
Edit 123-12-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-12-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-16-7890 leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
Edit 123-22-1234 Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
Edit 123-33-3243 Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
Edit 123-33-3456 Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
Edit 123-44-4455 isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
Edit 123-44-9898 Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-45-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-45-3678 viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
Edit 123-45-6789 Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
Edit 123-45-6798 dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
Edit 123-45-7890 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-45-9876 Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-0007 Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-0008 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 123-55-7890 Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
Edit 123-59-6789 floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
Edit 123-64-0000 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 123-64-0001 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 123-89-9874 Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
Edit 123-90-0000 Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
Edit 123-99-9999 Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
Edit 127-85-2211 Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 131-31-3131 Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
Edit 140-09-0567 Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 142-25-3698 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 145-44-7914 Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
Edit 151-15-1515 Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 151-15-1516 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 151-15-1518 Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 154-45-8798 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 168-05-5911 P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 172-32-1176 White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
Edit 190-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 190-00-0006 A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
Edit 200-00-0000 Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
Edit 212-77-4567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 213-00-0002 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 213-46-8915 Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
Edit 220-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Edit 222-00-1243 XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
Edit 222-12-1234 Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
Edit 222-12-3232 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 222-22-2222 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 222-22-2226 test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
Edit 222-88-2234 ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 224-45-9875 Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
Edit 230-00-0300 Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
Edit 232-56-5150 Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
Edit 233-44-5544 Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
Edit 234-34-3444 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 234-99-9999 qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
Edit 238-95-7766 Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
Edit 239-95-7766 Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 240-00-0000 Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 254-85-0000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 254-85-0500 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 267-41-2394 O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
Edit 269-54-0526 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 274-80-9391 HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
Edit 300-00-0001 Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 302-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 321-18-0231 xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 321-32-4321 Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
Edit 321-54-0987 Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
Edit 323-32-3233 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 323-66-5432 John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
Edit 324-45-4544 Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 327-00-2546 Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
Edit 332-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-00-0000 LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-00-0001 Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
Edit 333-00-1111 something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-22-6666 kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-30-3333 Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-31-3000 Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-33-1234 kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-33-3333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 333-33-3399 Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
Edit 341-22-1782 hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
Edit 343-33-0000 Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 345-67-0000 xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 348-88-3874 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 355-76-5317 Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
Edit 357-27-9870 Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
Edit 357-27-9873 Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
Edit 366-26-8404 LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
Edit 378-87-8737 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 394-00-9374 Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 395-26-2222 Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
Edit 399-99-3999 pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
Edit 400-00-0077 Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 409-56-7008 john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
Edit 427-17-2319 DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
Edit 432-00-0000 Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 440-90-7785 Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
Edit 443-00-0001 Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
Edit 443-23-5543 Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
Edit 444-44-4444 Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
Edit 445-00-0055 Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
Edit 446-44-4447 Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
Edit 454-21-3478 V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
Edit 454-21-8465 Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 456-99-0000 DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 472-27-2349 Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
Edit 486-29-1786 Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
Edit 500-00-0092 Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 527-72-3246 Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
Edit 555-00-5555 Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 555-11-2222 Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
Edit 555-12-5555 SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
Edit 555-44-5567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-55-5554 Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-55-5555 Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
Edit 555-55-5559 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-66-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 555-66-2222 Doe Pete 808 555-5555 happy days Redmond CA 98005 False
Edit 555-98-9855 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 564-00-0001 Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
Edit 585-88-9852 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 600-00-0001 Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
Edit 625-00-0000 Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
Edit 634-23-7895 Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 648-92-1872 Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
Edit 664-21-1125 Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
Edit 666-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-00-0088 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-00-0666 al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
Edit 666-55-8888 Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
Edit 666-66-6665 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-66-6666 Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
Edit 666-66-6969 Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
Edit 666-66-7777 LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-66-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-99-0666 Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 666-99-5655 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 672-71-3249 Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
Edit 696-69-6969 Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
Edit 700-00-1234 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 700-00-1235 Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 712-45-1867 del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
Edit 722-51-5454 DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
Edit 724-80-9391 MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
Edit 736-83-3231 Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 745-65-6578 Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
Edit 756-30-7391 Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
Edit 758-00-8888 gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
Edit 764-98-2345 Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 770-00-0000 Doe John 808 555-0055 One Microsoft Way CA 98005 False
Edit 777-00-0000 olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 777-22-3333 I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 777-55-1234 Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
Edit 777-77-7777 Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
Edit 777-99-7777 Huba Haba 555-555-5555 known Street Mexico CA 03100 False
Edit 787-00-0999 hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 789-12-4567 Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
Edit 800-00-0000 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 800-00-0008 Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
Edit 800-00-8888 gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
Edit 800-00-8889 Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 800-00-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 807-91-6654 Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
Edit 808-11-8088 McEwan Robert 808 123-8888 One My Way LA CA 98052 True
Edit 809-00-0111 V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 825-43-1234 SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
Edit 829-45-6587 Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 846-92-7186 Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
Edit 847-57-1348 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 847-57-1349 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
Edit 888-00-0000 Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-00-8877 Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
Edit 888-11-8888 Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-26-7143 Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-77-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-77-8888 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-88-8881 Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 888-88-8888 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 888-88-8889 Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
Edit 888-88-9999 zzz hhh 800 123-4567 life Redmond CA 98065 True
Edit 888-99-9999 Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
Edit 893-72-1158 McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
Edit 895-57-5418 Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 895-86-8759 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 899-46-2035 Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
Edit 899-89-8989 Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
Edit 900-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-00-0001 Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-00-0003 Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
Edit 900-00-1111 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-00-8000 a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 900-90-9000 Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
Edit 900-99-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 901-90-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 902-90-0001 Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 908-00-0000 Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
Edit 909-99-3333 Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 912-00-0099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 928-23-1324 Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
Edit 953-99-0928 Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
Edit 978-89-8070 Saevik Erling Antoni 92929292 Test Test CA 98005 False
Edit 980-00-9999 pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 981-88-9898 Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 987-00-9999 Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 987-22-3344 Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
Edit 987-65-4321 •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
Edit 987-87-9876 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 990-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 990-00-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 995-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 998-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 998-01-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 998-72-3567 Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
Edit 999-00-0000 aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-0001 obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
Edit 999-00-0009 Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-0010 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
Edit 999-00-0011 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-0987 Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
Edit 999-00-2222 Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
Edit 999-00-8903 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-00-9999 Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
Edit 999-11-0100 Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-11-1001 blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-22-0000 DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-22-9999 andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-23-0577 Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
Edit 999-33-3245 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-45-1324 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-45-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-55-2564 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-88-7777 Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0000 Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0001 Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
Edit 999-99-0009 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0165 Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-0191 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-1111 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-1112 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-1234 hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
Edit 999-99-3998 Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
Edit 999-99-5724 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-5758 monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Edit 999-99-5945 caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9199 chen yin 808 555-5555 test Redmond CA 98005 False
Edit 999-99-9678 Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9910 Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9911 Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
Edit 999-99-9912 Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9913 hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9914 Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
Edit 999-99-9977 Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9988 yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9989 Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9990 schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
Edit 999-99-9991 lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9993 myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
Edit 999-99-9994 mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
Edit 999-99-9995 Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
Edit 999-99-9996 akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9997 Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
Edit 999-99-9999 Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
000-
00- ana Takeit 100 111-2333 1937 17th Ave Chuckle City TN 63841 False
0000
000-
00- Yozzav phil 100 111-2222 Sixtengatan 16 shenzhen IN 51802 False
0001
000-
00- Dear John 310 777-8375 123 No Way Smallville UT 34523 True
0002
000-
00- MMM GoodKKKK 800 123-4569 Ext Way 123 •stanbul MO 80300 False
0003
000-
00- Shit Maggie'sTeensfa 905 555-5544 123 Main street Mississaugadf KS 12345 False
0004
000-
00- Nisse Pettersson 123 456-7890 jularbovägen Stockholm MD 12345 True
0005
000-
00- Key Cindy Cla 858 555-1212 One San Diego Way 268 244 B IUH IPU OR 92139 False
0006
000-
00- XT xiangTest 888 859-7845 12345 Hehaw Vermont TN 98005 True
0007
000-
00- Hakan Erens 216 342-1111 Uskudar Istanbul MD 11111 False
0008
000-
00- Hertz Jezebel 808 555-5555 17 Instant Oats Ct Benjaminia IN 98005 True
0009
000-
00- REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
0010
000-
00- Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
0011
000-
00- Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
0012
000-
00- Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
0013
000-
00- maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
0014
000-
00- Changc Zork 808 555-5555 On My Way Redmond CA 98005 False
0015
000-
00- Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
0016
000-
00- efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
0017
000-
00- pippo pluto 293849832 no way23 tel-aviv23 CA 98005 False
0018
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
22- One Microsoft Way Redmond CA 98005 False
2222
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- One Microsoft Way Redmond CA 98005 True
1517
151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
254-
85- One Microsoft Way Redmond CA 98005 False
8700
267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
88- S SD 111 234-6545 s s KS 11234 True
7645
999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
Buenos Aires
99- Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
8888
999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
000-00-0000 ana Takeit 100 111-2333 1937 17th Ave Chuckle City TN 63841 False
000-00-0002 Dear John 310 777-8375 123 No Way Smallville UT 34523 True
000-00-0003 MMM GoodKKKK 800 123-4569 Ext Way 123 •stanbul MO 80300 False
000-00-0004 Shit Maggie'sTeensfa 905 555-5544 123 Main street Mississaugadf KS 12345 False
000-00-0006 Key Cindy Cla 858 555-1212 One San Diego Way 268 244 B IUH IPU OR 92139 False
000-00-0009 Hertz Jezebel 808 555-5555 17 Instant Oats Ct Benjaminia IN 98005 True
000-00-0010 REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
000-00-0012 Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
000-00-0013 Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
000-00-0014 maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
000-00-0016 Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
000-00-0017 efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
000-00-0019 amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
000-00-0020 Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
000-00-0021 The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0022 Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-0023 Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
000-00-0024 Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
000-00-0025 Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
000-00-0026 Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
000-00-0027 RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
000-00-0028 Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
000-00-0031 qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0032 Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0033 Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
000-00-0034 Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
000-00-0035 The Clown Homey 554 444-1232 Circus Hell CA 33243 True
000-00-0036 Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
000-00-0037 Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
000-00-0038 Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
000-00-0039 Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-0040 Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0041 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0042 Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0044 Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
000-00-0046 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-0047 This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
Bjorn is the
000-00-0049 CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
000-00-0050 Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
000-00-0051 Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0052 olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
000-00-0053 Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
000-00-0054 Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0055 PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
000-00-0056 Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Gingerbread
000-00-0057 pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
000-00-0058 Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
000-00-0059 NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
000-00-0060 Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
000-00-0061 Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0062 Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0065 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0066 voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0067 Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0069 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0070 Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
000-00-0071 Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-0072 Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
000-00-0077 Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
000-00-0078 doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
000-00-0079 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0080 Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0082 Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0085 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0088 ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0089 Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0090 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0091 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0092 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0098 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0099 Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0100 geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0101 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0110 Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0112 Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
000-00-0120 Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0122 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0123 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0125 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0199 Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-0201 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0232 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0300 Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0325 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0350 Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0400 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0433 Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
000-00-0435 Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
000-00-0444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0456 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0483 Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0500 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0540 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0545 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0550 Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
000-00-0567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0578 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0655 Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
000-00-0666 Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
000-00-0690 aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0708 donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0765 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-0766 Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
000-00-0789 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0800 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-0898 Doe John 808 555-5555 old man's way Redmond CA 98005 False
000-00-0987 aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1000 moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
000-00-1001 pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
000-00-1002 Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1004 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1005 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1008 Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1110 Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-1111 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1112 Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
000-00-1116 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1119 Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
000-00-1176 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1212 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1233 Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
000-00-1234 Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1237 Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1245 Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1255 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
000-00-1258 fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1324 Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
000-00-1394 Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
000-00-1500 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1602 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1700 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1972 ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
000-00-1973 Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-1984 Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
000-00-1999 Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
000-00-2000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-2121 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-2154 Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-2222 Doe John One Microsoft Way Redmond CA 98005 False
000-00-2223 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-2274 zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-2323 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-2324 car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-2555 Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
000-00-2678 Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-2728 Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
000-00-2929 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-3070 Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
000-00-3243 Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-3245 dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-3333 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-3985 Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
000-00-4000 jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-4001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-4005 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
000-00-4200 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-4325 Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
000-00-4344 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-4345 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-4352 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-4444 Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-4544 Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
000-00-4545 Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
000-00-4546 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-4567 Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-4959 Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
000-00-4999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-5000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-5555 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6512 Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-6542 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6543 Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6544 Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6548 Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6564 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6578 XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6615 Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6656 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6666 Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6676 Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
000-00-6969 Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-6999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-7474 R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
000-00-7532 Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-7777 c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
000-00-7858 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-8550 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-8564 tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
000-00-8756 Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-8765 jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-8884 Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-8888 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-8976 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-8999 Meay Ohii 956 268-7988 Gere •• MD 98953 True
000-00-9000 Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
000-00-9090 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9111 Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9123 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9191 Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
000-00-9229 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9281 KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-00-9568 pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9751 Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9874 Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
000-00-9900 Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9902 pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
000-00-9909 Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9926 asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9932 Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
000-00-9944 Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
000-00-9956 Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
000-00-9990 Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
000-00-9991 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-00-9993 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
000-00-9999 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-01-0000 Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
000-01-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-01-1111 Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-01-1222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-01-1234 Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-01-1974 Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
000-01-2000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-01-2222 ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-01-9999 ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-02-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-05-0001 Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-07-0000 Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-08-0000 Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-09-0000 Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-09-9834 Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-10-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-10-9999 qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-11-0000 aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-11-0001 Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-11-0010 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-11-0011 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-11-0450 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-11-1234 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-11-1299 Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
000-12-0000 Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-15-9999 Doe John 808 555-5555 One Microsoft Way CA 98005 True
000-20-0000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-20-0007 Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
000-20-0543 Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-21-0000 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-21-9523 Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
000-22-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-25-4256 Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-26-2626 Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-28-1000 Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
000-44-0000 Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
000-44-5555 Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-44-6666 Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
000-55-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-55-1234 blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-55-4239 Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-65-4321 Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
000-66-0000 Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
000-66-1234 Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
000-69-0069 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-77-0000 Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-77-0001 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-77-7777 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-78-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-86-0000 Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
000-88-0000 Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
000-88-0654 Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
000-88-1234 Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
000-90-0012 Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
000-90-0098 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-98-0000 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
000-99-0000 Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
000-99-0034 kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-99-0038 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-99-8888 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
000-99-8889 Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
000-99-9999 Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
001-00-0000 Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
001-00-0001 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
001-00-1000 Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
001-00-4321 Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
001-00-4322 Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
001-01-0000 Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
001-01-0001 a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
001-01-0011 sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
001-01-4323 Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
001-02-0004 xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
001-02-2223 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
001-10-0100 Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
001-62-0000 Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
001-99-0000 Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
004-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
005-00-0000 Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
006-88-6543 George B. 440 123-2345 One Middle Road Elyria OR 55505 False
007-01-0070 Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
007-12-0050 Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
009-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
010-00-0000 Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
010-00-6666 Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
010-01-0100 Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
010-10-1010 Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
010-20-0030 Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
010-60-7224 Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
011-00-0000 Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
011-00-0009 DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
011-00-1111 Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
011-01-9999 Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
011-11-1010 Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
012-34-5678 Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
017-01-0056 Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
017-11-0000 ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
020-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
020-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
022-00-0004 sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
022-10-0004 sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
023-00-0000 luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
040-00-0040 boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
042-42-0042 Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
043-85-8411 Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
050-00-0000 ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
050-06-0000 abc John 55 Germany Detmold CA 32760 False
056-00-7474 Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
056-00-9999 Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
056-99-9999 Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
060-00-0088 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
065-00-0000 Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
065-01-0000 808 555-5555 One Microsoft Way Redmond CA 98005 False
065-02-0000 leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
090-00-1111 Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
090-04-6543 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
090-09-0909 ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
090-99-0990 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
099-00-9999 Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
099-99-9099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
099-99-9999 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
100-00-0000 Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-00-0001 Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
100-00-0002 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-00-0008 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-00-0009 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-00-0034 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-00-0098 Doe John 808 555-5555 One Microsoft Way MI 98005 True
Ribeiro
100-00-0666 Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
100-00-1000 Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
100-00-1024 tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
100-00-7777 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-00-9991 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-02-0300 lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-10-0000 Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-10-0001 Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
100-20-0301 Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
100-34-0049 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-50-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-50-0009 zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
100-55-0000 XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
100-99-0000 Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
101-01-0101 Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
101-01-1090 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
101-11-1111 Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
102-25-1254 •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
110-00-0011 Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
110-10-1233 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
110-98-0000 Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
110-99-0099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-00-0000 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-00-0034 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
111-00-0069 Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
111-00-0300 Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-00-1234 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-00-4444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-00-9999 Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
111-01-1234 Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-11-0123 kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
111-11-1000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-11-1111 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-11-1119 hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-11-1123 Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
111-11-1234 MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
111-11-2222 Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
111-11-2223 Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
111-11-2333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-11-9898 Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-11-9999 kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
111-12-1234 •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-12-2222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-13-1234 Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
111-22-1111 Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
111-22-1155 Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
111-22-1234 Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
111-22-2222 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-22-3331 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-22-3345 Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
111-22-4444 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-24-3434 asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-43-0454 DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-50-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-99-0000 gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
111-99-1234 Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
112-23-9783 Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
112-23-9999 Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
112-55-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
120-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
120-00-1001 Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
120-08-0098 Busta Rime 808 555-5555 One No Way San Man KS 98005 False
121-00-0000 Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
121-10-1989 Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
121-22-1133 Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
121-80-5753 Does John23 2 One Microsoft Way1 Redmond CA 98005 True
122-12-1212 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
122-22-1234 test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
122-32-1111 akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-00-1212 Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-00-1234 Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
123-00-5432 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-06-4000 van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
123-11-1111 France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-11-2000 Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
123-12-0915 Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
123-12-1234 Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-12-1564 Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
123-12-2345 Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
123-12-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-12-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-22-1234 Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
123-33-3243 Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
123-44-9898 Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-45-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-45-3678 viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
123-45-6789 Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
123-45-6798 dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
123-45-7890 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-45-9876 Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-55-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-55-0007 Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-55-0008 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
123-55-7890 Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
123-59-6789 floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
123-64-0000 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
123-64-0001 KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
123-90-0000 Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
123-99-9999 Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
127-85-2211 Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
131-31-3131 Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
140-09-0567 Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
142-25-3698 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
145-44-7914 Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
151-15-1515 Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
151-15-1518 Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
154-45-8798 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
172-32-1176 White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
190-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
190-00-0006 A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
200-00-0000 Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
212-77-4567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
213-00-0002 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
213-46-8915 Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
220-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
222-12-1234 Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
222-12-3232 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
222-22-2222 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
222-22-2226 test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
222-88-2234 ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
224-45-9875 Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
230-00-0300 Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
232-56-5150 Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
234-34-3444 Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
234-99-9999 qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
238-95-7766 Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
239-95-7766 Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
240-00-0000 Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
254-85-0000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
267-41-2394 O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
269-54-0526 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
274-80-9391 HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
300-00-0001 Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
302-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
321-18-0231 xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
321-32-4321 Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
321-54-0987 Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
323-32-3233 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
323-66-5432 John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
324-45-4544 Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
327-00-2546 Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
332-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
333-00-0000 LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
333-00-0001 Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
333-00-1111 something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
333-22-6666 kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
333-30-3333 Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
333-31-3000 Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
333-33-1234 kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
333-33-3333 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
333-33-3399 Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
341-22-1782 hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
343-33-0000 Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
345-67-0000 xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
348-88-3874 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
355-76-5317 Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
357-27-9870 Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
357-27-9873 Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
366-26-8404 LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
378-87-8737 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
394-00-9374 Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
395-26-2222 Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
399-99-3999 pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
400-00-0077 Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
409-56-7008 john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
427-17-2319 DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
432-00-0000 Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
440-90-7785 Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
443-23-5543 Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
444-44-4444 Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
445-00-0055 Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
446-44-4447 Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
454-21-8465 Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
456-99-0000 DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
472-27-2349 Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
486-29-1786 Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
500-00-0092 Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
527-72-3246 Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
555-00-5555 Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
555-11-2222 Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
555-12-5555 SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
555-44-5567 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
555-55-5554 Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
555-55-5555 Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
555-55-5559 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
555-66-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
555-66-2222 Doe Pete 808 555-5555 happy days Redmond CA 98005 False
555-98-9855 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
564-00-0001 Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
585-88-9852 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
600-00-0001 Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
625-00-0000 Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
634-23-7895 Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
648-92-1872 Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
664-21-1125 Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
666-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
666-00-0088 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
666-00-0666 al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
666-55-8888 Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
666-66-6665 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
666-66-6666 Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
666-66-6969 Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
666-66-7777 LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
666-66-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
666-99-0666 Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
666-99-5655 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
672-71-3249 Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
696-69-6969 Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
700-00-1234 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
700-00-1235 Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
712-45-1867 del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
722-51-5454 DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
724-80-9391 MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
736-83-3231 Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
745-65-6578 Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
756-30-7391 Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
770-00-0000 Doe John 808 555-0055 One Microsoft Way CA 98005 False
777-00-0000 olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
777-22-3333 I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
777-55-1234 Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
787-00-0999 hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
789-12-4567 Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
800-00-0008 Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
800-00-8889 Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
800-00-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
807-91-6654 Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
809-00-0111 V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
825-43-1234 SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
829-45-6587 Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
846-92-7186 Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
847-57-1348 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
847-57-1349 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
888-00-0000 Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
888-00-8877 Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
888-26-7143 Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
888-77-6666 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
888-77-8888 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
888-88-8881 Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
888-88-8888 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
888-88-8889 Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
888-99-9999 Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
893-72-1158 McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
895-57-5418 Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
895-86-8759 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
899-46-2035 Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
899-89-8989 Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
900-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
900-00-0001 Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
900-00-0003 Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
900-00-1111 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
900-90-9000 Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
900-99-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
901-90-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
902-90-0001 Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
908-00-0000 Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
909-99-3333 Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
912-00-0099 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
928-23-1324 Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
953-99-0928 Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
980-00-9999 pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
981-88-9898 Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
987-00-9999 Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
987-22-3344 Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
987-65-4321 •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
987-87-9876 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
990-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
990-00-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
995-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
998-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
998-01-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
998-72-3567 Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
999-00-0000 aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-00-0001 obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
999-00-0009 Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-00-0010 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
999-00-0011 Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-00-2222 Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
999-00-8903 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-00-9999 Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
999-11-0100 Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-11-1001 blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-22-0000 DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-22-9999 andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-23-0577 Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
999-33-3245 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-45-1324 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-45-9999 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-55-2564 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-88-7645 S SD 111 234-6545 s s KS 11234 True
999-88-7777 Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-0000 Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-0001 Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
999-99-0009 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-0165 Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-0191 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-1111 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-1112 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-1234 hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
999-99-5724 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-5758 monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
999-99-5945 caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
Buenos Aires
999-99-8888 Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
999-99-9910 Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
999-99-9911 Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
999-99-9912 Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
999-99-9913 hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-9914 Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
999-99-9977 Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-9988 yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-9989 Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-9991 lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-9993 myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
999-99-9994 mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
999-99-9996 akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-9997 Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
999-99-9999 Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
Get 000-
00- ana Takeit 100 111-2333 1937 17th Ave Chuckle City TN 63841 False
Details
0000
Get 000-
00- Yozzav phil 100 111-2222 Sixtengatan 16 shenzhen IN 51802 False
Details
0001
Get 000-
00- Dear John 310 777-8375 123 No Way Smallville UT 34523 True
Details
0002
Get 000-
00- MMM GoodKKKK 800 123-4569 Ext Way 123 •stanbul MO 80300 False
Details
0003
Get 000-
00- Shit Maggie'sTeensfa 905 555-5544 123 Main street Mississaugadf KS 12345 False
Details
0004
Get 000-
00- Nisse Pettersson 123 456-7890 jularbovägen Stockholm MD 12345 True
Details
0005
Get 000-
00- Key Cindy Cla 858 555-1212 One San Diego Way 268 244 B IUH IPU OR 92139 False
Details
0006
Get 000-
00- XT xiangTest 888 859-7845 12345 Hehaw Vermont TN 98005 True
Details
0007
Get 000-
00- Hakan Erens 216 342-1111 Uskudar Istanbul MD 11111 False
Details
0008
Get 000-
00- Hertz Jezebel 808 555-5555 17 Instant Oats Ct Benjaminia IN 98005 True
Details
0009
Get 000-
00- REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
Details
0010
Get 000-
00- Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
Details
0011
Get 000-
00- Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
Details
0012
Get 000-
00- Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
Details
0013
Get 000-
00- maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
Details
0014
Get 000-
00- Changc Zork 808 555-5555 On My Way Redmond CA 98005 False
Details
0015
Get 000-
00- Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
Details
0016
Get 000-
00- efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
Details
0017
Get 000-
00- pippo pluto 293849832 no way23 tel-aviv23 CA 98005 False
Details
0018
Get 000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
Details
0019
Get 000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
Details
0020
Get 000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0021
Get 000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0022
Get 000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
Details
0023
Get 000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
Details
0024
Get 000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
Details
0025
Get 000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
Details
0026
Get 000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
Details
0027
Get 000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
Details
0028
Get 000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
Details
0029
Get 000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
Details
0030
Get 000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0031
Get 000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0032
Get 000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
Details
0033
Get 000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
Details
0034
Get 000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
Details
0035
Get 000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
Details
0036
Get 000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
0037
Get 000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
Details
0038
Get 000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0039
Get 000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0040
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0041
Get 000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0042
Get 000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Details Suite 200
0043
Get 000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
Details
0044
Get 000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
Details
0045
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0046
Get 000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
Details
0047
Get 000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Details Friiiiday!
0048
Get 000-
00- Bjorn is the man! CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
Details
0049
Get 000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
Details
0050
Get 000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0051
Get 000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
Details
0052
Get 000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
Details
0053
Get 000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0054
Get 000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
Details
0055
Get 000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0056
Get 000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Details Ratte!
0057
Get 000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
Details
0058
Get 000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
Details
0059
Get 000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
Details
0060
Get 000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0061
Get 000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0062
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0065
Get 000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0066
Get 000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0067
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0069
Get 000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
Details
0070
Get 000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0071
Get 000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
Details
0072
Get 000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
Details
0077
Get 000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
Details
0078
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0079
Get 000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0080
Get 000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0082
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0085
Get 000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0088
Get 000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0089
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0090
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0091
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0092
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0098
Get 000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0099
Get 000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0100
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0101
Get 000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0110
Get 000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
Details
0111
Get 000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
Details
0112
Get 000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0120
Get 000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
Details
0121
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0122
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0123
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0125
Get 000-
00- pp pp 808 555-5555 pp pp OR 98005 False
Details
0147
Get 000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
Details
0170
Get 000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
Details
0180
Get 000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0199
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0201
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0232
Get 000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0300
Get 000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0325
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0333
Get 000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0350
Get 000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
Details
0399
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0400
Get 000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
Details
0433
Get 000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
Details
0435
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0444
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0456
Get 000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0483
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0500
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0540
Get 000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0545
Get 000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
Details
0550
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0567
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0578
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
0655
Get 000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
Details
0666
Get 000-
00- V T 555-555-5555 TEST TEST IN 98005 True
Details
0678
Get 000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0690
Get 000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0708
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0765
Get 000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
Details
0766
Get 000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
Details
0777
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0789
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0800
Get 000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
Details
0898
Get 000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0987
Get 000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
Details
0999
Get 000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
Details
1000
Get 000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
Details
1001
Get 000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1002
Get 000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
Details
1003
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1004
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1005
Get 000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1008
Get 000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
1110
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1111
Get 000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
Details
1112
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1116
Get 000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
Details
1119
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1176
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1212
Get 000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
Details
1233
Get 000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1237
Get 000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1245
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Details
1255
Get 000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1258
Get 000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
Details
1324
Get 000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
Details
1394
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1500
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1602
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1700
Get 000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
Details
1972
Get 000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1973
Get 000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
Details
1984
Get 000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
Details
1999
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2000
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2121
Get 000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2154
Get 000-
00- Doe John One Microsoft Way Redmond CA 98005 False
Details
2222
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2223
Get 000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2274
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2323
Get 000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2324
Get 000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
Details
2555
Get 000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2678
Get 000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
Details
2728
Get 000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2929
Get 000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
Details
3070
Get 000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
Details
3071
Get 000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3243
Get 000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3245
Get 000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
Details
3322
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3333
Get 000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
Details
3635
Get 000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
3985
Get 000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4000
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4001
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Details
4005
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4200
Get 000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
Details
4325
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4344
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4345
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4352
Get 000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4444
Get 000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
Details
4544
Get 000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
Details
4545
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4546
Get 000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4567
Get 000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
Details
4959
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4999
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5000
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5555
Get 000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
6512
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6542
Get 000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6543
Get 000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6544
Get 000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6548
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6564
Get 000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6578
Get 000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
Details
6600
Get 000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6615
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6656
Get 000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6666
Get 000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
Details
6676
Get 000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6969
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6999
Get 000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
Details
7474
Get 000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
7532
Get 000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
Details
7676
Get 000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
Details
7734
Get 000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
7777
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
7858
Get 000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
Details
8524
Get 000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
Details
8528
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8550
Get 000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
8564
Get 000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8756
Get 000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8765
Get 000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8884
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8888
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8976
Get 000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
Details
8999
Get 000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
Details
9000
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9090
Get 000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9111
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9123
Get 000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
Details
9191
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9229
Get 000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
9281
Get 000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9568
Get 000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9751
Get 000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
Details
9874
Get 000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
Details
9878
Get 000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9900
Get 000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
Details
9902
Get 000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9909
Get 000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9926
Get 000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
Details
9932
Get 000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
Details
9933
Get 000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
Details
9944
Get 000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
Details
9956
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
Details
9990
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9991
Get 000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Details
9993
Get 000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
Details
0000
Get 000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
Details
0001
Get 000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1000
Get 000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1111
Get 000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1222
Get 000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
Details
1974
Get 000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2000
Get 000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2222
Get 000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
9999
Get 000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0000
Get 000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
9834
Get 000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
Details
0009
Get 000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1546
Get 000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0010
Get 000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0011
Get 000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0450
Get 000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
Details
1111
Get 000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
Details
1299
Get 000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
Details
4444
Get 000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
12- Doe John 808 555-5555 CA 98005 False
Details
1111
Get 000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
Details
9999
Get 000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
Details
0007
Get 000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0543
Get 000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
Details
9523
Get 000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
22- One Microsoft Way Redmond CA 98005 False
Details
2222
Get 000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4256
Get 000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2626
Get 000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
Details
1000
Get 000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
0000
Get 000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5555
Get 000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
Details
6666
Get 000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4239
Get 000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
Details
4321
Get 000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
Details
0000
Get 000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
Details
1234
Get 000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0069
Get 000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
Details
1243
Get 000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0000
Get 000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
7777
Get 000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
Details
0000
Get 000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
0000
Get 000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
0654
Get 000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
Details
1234
Get 000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
Details
0012
Get 000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0098
Get 000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Details
0000
Get 000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0000
Get 000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0034
Get 000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0038
Get 000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8888
Get 000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
Details
8889
Get 000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
Details
0000
Get 001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
Details
0021
Get 001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0125
Get 001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
Details
1000
Get 001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4321
Get 001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
Details
4322
Get 001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0000
Get 001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
Details
0011
Get 001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
Details
4323
Get 001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0004
Get 001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2223
Get 001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
0100
Get 001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
Details
0000
Get 001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
Details
0000
Get 001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
Details
0000
Get 004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
Details
6543
Get 007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
Details
7007
Get 007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
Details
0070
Get 007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
Details
0050
Get 009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
Details
1000
Get 010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0000
Get 010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
Details
6666
Get 010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0100
Get 010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
Details
9999
Get 010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
Details
1010
Get 010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
Details
0030
Get 010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
7224
Get 011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
Details
0009
Get 011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
Details
1111
Get 011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
9999
Get 011-
10- Doe bob nunya Austin TN 98005 False
Details
0101
Get 011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
Details
1010
Get 011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
Details
9779
Get 011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
9889
Get 011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
9999
Get 012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
Details
0456
Get 012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
Details
5678
Get 017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
Details
0056
Get 017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1000
Get 022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0004
Get 022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
0004
Get 023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
Details
0000
Get 040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0040
Get 042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
Details
0042
Get 043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
Details
8411
Get 050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 050-
06- abc John 55 Germany Detmold CA 32760 False
Details
0000
Get 056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
Details
7474
Get 056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
Details
9999
Get 056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
Details
9999
Get 060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0088
Get 065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
Details
0000
Get 089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
Details
5056
Get 090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
1111
Get 090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6543
Get 090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
Details
0909
Get 090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0990
Get 099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
Details
9999
Get 099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9099
Get 099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Details
9999
Get 100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
Details
0001
Get 100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0002
Get 100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0008
Get 100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0009
Get 100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0034
Get 100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
Details
0098
Get 100-
00- Ribeiro Gianechini Danilo 111 222-3333 My Address My City KS 09110 False
Details
0666
Get 100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
Details
1000
Get 100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
Details
1024
Get 100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
7777
Get 100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9991
Get 100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0300
Get 100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
Details
0001
Get 100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1000
Get 100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
Details
0300
Get 100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
Details
0301
Get 100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0049
Get 100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0009
Get 100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
Details
0000
Get 100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
Details
0098
Get 101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
Details
0101
Get 101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1090
Get 101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
Details
1010
Get 101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
Details
1111
Get 102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
Details
1254
Get 110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0011
Get 110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1233
Get 110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
Details
0000
Get 110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0099
Get 111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
0034
Get 111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
Details
0069
Get 111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0300
Get 111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4444
Get 111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
Details
9999
Get 111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
Details
0123
Get 111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1000
Get 111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1111
Get 111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
Details
1112
Get 111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1119
Get 111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
Details
1123
Get 111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
1234
Get 111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
Details
2222
Get 111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
Details
2223
Get 111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2333
Get 111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
Details
7892
Get 111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9898
Get 111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2222
Get 111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
Details
1234
Get 111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
Details
1111
Get 111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
Details
1155
Get 111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
Details
1234
Get 111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2222
Get 111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3331
Get 111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
Details
3333
Get 111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
Details
3335
Get 111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
Details
3345
Get 111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4444
Get 111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5555
Get 111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3434
Get 111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0454
Get 111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
1234
Get 111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
Details
9999
Get 112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9783
Get 112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6666
Get 120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1001
Get 120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
Details
0098
Get 121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
1989
Get 121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
Details
1212
Get 121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3214
Get 121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
Details
1133
Get 121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
Details
5753
Get 122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1212
Get 122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1111
Get 123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
Details
0034
Get 123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1111
Get 123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1212
Get 123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
Details
1234
Get 123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5432
Get 123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
4000
Get 123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1111
Get 123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
Details
2000
Get 123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
Details
0915
Get 123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
Details
1564
Get 123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
Details
2345
Get 123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
Details
3625
Get 123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6666
Get 123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
Details
7890
Get 123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
Details
1234
Get 123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
Details
3243
Get 123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
Details
3456
Get 123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
Details
4455
Get 123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9898
Get 123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
Details
3678
Get 123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
Details
6789
Get 123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
Details
6798
Get 123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
7890
Get 123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9876
Get 123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0007
Get 123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0008
Get 123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
Details
7890
Get 123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
Details
6789
Get 123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0000
Get 123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0001
Get 123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
Details
9874
Get 123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
Details
0000
Get 123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
Details
6655
Get 123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
Details
9999
Get 127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2211
Get 131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
Details
3131
Get 140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0567
Get 142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3698
Get 145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
Details
7914
Get 151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1515
Get 151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1516
Get 151-
15- One Microsoft Way Redmond CA 98005 True
Details
1517
Get 151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1518
Get 154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8798
Get 168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5911
Get 172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
Details
1176
Get 190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
Details
0006
Get 200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
Details
0000
Get 212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4567
Get 213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0002
Get 213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
Details
8915
Get 220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
Details
0000
Get 222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
Details
1243
Get 222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
Details
1234
Get 222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3232
Get 222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2222
Get 222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
Details
2226
Get 222-
22- a f 333 434-3334 Cleveland IN 34344 False
Details
3322
Get 222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
Details
3332
Get 222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2234
Get 224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
Details
9875
Get 230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
Details
0300
Get 232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
Details
5150
Get 233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
Details
5544
Get 234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
3444
Get 234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
Details
9999
Get 238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
Details
7766
Get 239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
7766
Get 240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0500
Get 254-
85- One Microsoft Way Redmond CA 98005 False
Details
8700
Get 267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
Details
2394
Get 269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0526
Get 274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
Details
9391
Get 300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0231
Get 321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
Details
4321
Get 321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
Details
0987
Get 323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3233
Get 323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
Details
5432
Get 324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
4544
Get 327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
Details
2546
Get 332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
Details
0001
Get 333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1111
Get 333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6666
Get 333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3333
Get 333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3000
Get 333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3333
Get 333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
Details
3399
Get 341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
Details
1782
Get 343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3874
Get 355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
Details
5317
Get 357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
Details
9870
Get 357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
Details
9873
Get 366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
Details
8404
Get 378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8737
Get 394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
Details
9374
Get 395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
Details
2222
Get 399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
Details
3999
Get 400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0077
Get 409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
Details
7008
Get 427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
Details
2319
Get 432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
Details
7785
Get 443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
Details
0001
Get 443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
Details
5543
Get 444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
Details
4444
Get 445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
Details
0055
Get 446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
Details
4447
Get 454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
Details
3478
Get 454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
Details
8465
Get 456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
0000
Get 472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
Details
2349
Get 486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
Details
1786
Get 500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0092
Get 527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
Details
3246
Get 555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
5555
Get 555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
Details
2222
Get 555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
Details
5555
Get 555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
Details
3210
Get 555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5567
Get 555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5554
Get 555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
Details
5555
Get 555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5559
Get 555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
Details
2222
Get 555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9855
Get 564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
Details
0001
Get 585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9852
Get 600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
Details
0001
Get 625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
Details
0000
Get 634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
Details
7895
Get 648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
Details
1872
Get 664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
Details
1125
Get 666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0088
Get 666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
Details
0666
Get 666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
Details
8888
Get 666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6665
Get 666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
Details
6666
Get 666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
Details
6969
Get 666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
7777
Get 666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0666
Get 666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5655
Get 672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
Details
3249
Get 678-
00- jane young 025-34324324 nanjing •• CA 98005 False
Details
9876
Get 696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
Details
6969
Get 700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1234
Get 700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
Details
1235
Get 712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
Details
1867
Get 722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
Details
5454
Get 724-
5420 Telegraph Av. sdsdfs ds
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
Details d sdf sdf s
9931
Get 724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
Details
9391
Get 736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3231
Get 745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
Details
6578
Get 756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
Details
7391
Get 758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
Details
0002
Get 758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
Details
8888
Get 764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
2345
Get 770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
Details
0000
Get 777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3333
Get 777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
Details
1234
Get 777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
Details
7777
Get 777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
Details
7777
Get 787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0999
Get 789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
Details
4567
Get 800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
Details
0008
Get 800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
Details
8888
Get 800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8889
Get 800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
Details
6654
Get 808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
Details
8088
Get 809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
0111
Get 825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
Details
1234
Get 829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6587
Get 846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
Details
7186
Get 847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1348
Get 847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
Details
1349
Get 888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
Details
8877
Get 888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
Details
8888
Get 888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8888
Get 888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
7143
Get 888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
6666
Get 888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8888
Get 888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
8881
Get 888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8888
Get 888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
Details
8889
Get 888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
Details
9999
Get 888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
Details
9999
Get 893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
Details
1158
Get 895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5418
Get 895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8759
Get 899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
Details
2035
Get 899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
Details
8989
Get 900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
Details
0003
Get 900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1111
Get 900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8000
Get 900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
Details
9000
Get 900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0001
Get 908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
Details
0000
Get 909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3333
Get 912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0099
Get 928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
Details
1324
Get 953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
Details
0928
Get 978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
Details
8070
Get 980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9898
Get 987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
Details
3344
Get 987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
Details
4321
Get 987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9876
Get 988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
Details
8888
Get 990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
Details
3567
Get 999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
Details
0001
Get 999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0009
Get 999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
Details
0010
Get 999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0011
Get 999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
Details
0987
Get 999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
Details
2222
Get 999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
8903
Get 999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
Details
9999
Get 999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0100
Get 999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1001
Get 999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
Details
0577
Get 999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
3245
Get 999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1324
Get 999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9999
Get 999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
2564
Get 999-
88- S SD 111 234-6545 s s KS 11234 True
Details
7645
Get 999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
7777
Get 999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0000
Get 999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
Details
0001
Get 999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0009
Get 999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0165
Get 999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
0191
Get 999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1111
Get 999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
1112
Get 999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
Details
1234
Get 999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
Details
3998
Get 999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5724
Get 999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
Details
5758
Get 999-
99- One Microsoft Way Redmond CA 98005 False
Details
5944
Get 999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
5945
Get 999-
99- Mark Lodesones 850 546-5698 Micri Buenos Aires Argenti CA 98005 True
Details
8888
Get 999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
Details
9199
Get 999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9678
Get 999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
Details
9910
Get 999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
Details
9911
Get 999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
Details
9912
Get 999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9913
Get 999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
Details
9914
Get 999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9977
Get 999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9988
Get 999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9989
Get 999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
Details
9990
Get 999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9991
Get 999-
1100 east woodfield rd, suite
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
Details 520
9992
Get 999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
Details
9993
Get 999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
Details
9994
Get 999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
Details
9995
Get 999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9996
Get 999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
Details
9997
Get 999-
99- well what 808 555-5555 hello •• CA 98005 False
Details
9998
Get 999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
Details
9999
TenMostExpensiveProducts UnitPrice
Raclette Courdavault 55
Ipoh Coffee 46
Sun Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat
30 1 2 3 4 5 6 30 1 2 3 4 5 6
7 8 9 10 11 12 13 7 8 9 10 11 12 13
14 15 16 17 18 19 20 14 15 16 17 18 19 20
21 22 23 24 25 26 27 21 22 23 24 25 26 27
28 29 30 31 1 2 3 28 29 30 31 1 2 3
4 5 6 7 8 9 10 4 5 6 7 8 9 10
ProductID CategoryID ProductName ProductDescription UnitPrice ImagePath ServingSize Servings Quantity MinOnHand MaxOnHand Manufacturer
Chocolate Chocolate City 8 fl oz (240 Chocolate
1001 1 2 /quickstart/aspplus/images/milk5.gif 8 0 0 0
City Milk Milk Description mL) City
Lemon Lime
Fizzy Fizzing 6 fl oz (180
3004 3 Quencher 1.05 /quickstart/aspplus/images/soda8.gif 5 0 0 0 Sparkle Co.
Drink mL)
Description
Marigold Marigold Whole 8 fl oz (240 Marigold
1005 1 1.39 /quickstart/aspplus/images/milk6.gif 8 0 0 0
Whole Milk Milk Description mL) Meadows
ProductID CategoryID ProductName ProductDescription UnitPrice ImagePath ServingSize Servings Quantity MinOnHand MaxOnHand Manufacturer
Chocolate Chocolate City 8 fl oz (240 Chocolate
1001 1 2 /quickstart/aspplus/images/milk5.gif 8 0 0 0
City Milk Milk Description mL) City
Lemon Lime
Fizzy Fizzing 6 fl oz (180
3004 3 Quencher 1.05 /quickstart/aspplus/images/soda8.gif 5 0 0 0 Sparkle Co.
Drink mL)
Description
Marigold Marigold Whole 8 fl oz (240 Marigold
1005 1 1.39 /quickstart/aspplus/images/milk6.gif 8 0 0 0
Whole Milk Milk Description mL) Meadows
Connect String:
server=(local)\NetSDK;database=pubs;Trusted_Connection=yes
Query:
select * from Authors
Cache Services Unlike DataList, Repeater has no built-in layout or styles. You must
Caching Overview explicitly declare all HTML layout, formatting, and style tags within the
templates of the control. For example, to create a list within an HTML
Page Output Caching table, you might declare the <table> tag in the HeaderTemplate, a table
Page Fragment Caching row (<tr> tags, <td> tags, and data-bound items) in the ItemTemplate,
Page Data Caching and the </table> tag in the FooterTemplate.
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication VB Repeater1.aspx
Forms-based Authentication
Authorizing Users and Roles [Run Sample] | [View Source]
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Silicon Valley
The Gourmet Microwave
Gastronomic Treats
Title ID: MC3021
Title ID: MC2222 Category: mod_cook
Category: mod_cook Publisher ID: 0877
Publisher ID: 0877 Price: $ 2.99
Price: $ 19.99
The Psychology of
But Is It User Friendly?
Computer Cooking
Title ID: PC1035
Title ID: MC3026 Category: popular_comp
Category: UNDECIDED Publisher ID: 1389
Publisher ID: 0877 Price: $ 22.95
Price:
Title: Computer
Title: Cooking Phobic AND Non-
with Computers: Phobic
Surreptitious Individuals:
Balance Sheets Behavior
Category: Variations
business Category:
Publisher ID: psychology
1389 Publisher ID:
Price: $ 11.95 0877
Price: $ 21.59
Title: Straight
Title: Life
Talk About
Without Fear
Computers
Category:
Category:
psychology
business
Publisher ID:
Publisher ID:
0736
1389
Price: $ 7
Price: $ 19.99
Title: Onions,
Title: The
Leeks, and
Psychology of
Garlic: Cooking
Computer
Secrets of the
Cooking
Mediterranean
Category:
Category:
UNDECIDED
trad_cook
Publisher ID:
Publisher ID:
0877
0877
Price:
Price: $ 20.95
Title: Cooking
Title: Straight
with Computers:
Talk About
Surreptitious
Computers
Balance Sheets
Category:
Category:
business
business
Publisher ID:
Publisher ID:
1389
1389
Price: $ 19.99
Price: $ 11.95
Save to
Save to
Favorites
Favorites
Title: Cooking
Title: Straight
with Computers:
Talk About
Surreptitious
Computers
Balance Sheets
Category:
Category:
business
business
Publisher ID:
Publisher ID:
1389
1389
Price: $ 19.99
Price: $ 11.95
Save to
Save to
Favorites
Favorites
Update Favorites
Hello World!
Hello ASP.NET!
Hello World!!!!
Hello There
Hello There
Hello There
Hello There
Value: 0
Add | Subtract
Value: 0
Add | Subtract
Value: 0
Add | Subtract
Message1: Label1
Message2: Label2
Button1 | Button2
Value: 0
Add | Subtract
Value: 0
Add | Subtract
Value: 1
Value: 2
Value: 3
Value: 4
Update
Value: 1
Value: 2
Value: 3
Value: 4
Update
Three
Three
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The HtmlButton control renders as an HTML 4.0 <button>. This differs
from <input type="button"> in that it enables Web developers to create
Introducing Web Forms
rich user interface form buttons that can be composed from embedded
Working with Server Controls HTML elements (and even other ASP.NET server controls).
Applying Styles to Controls
Server Control Form Validation The following sample illustrates using the HtmlButton control.
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference VB HtmlButton1.aspx
Web Forms Syntax Reference
[Run Sample] | [View Source]
ASP.NET Web Services
Introducing Web Services
Writing a Simple Web Service
Web Service Type Marshalling
Using Data in Web Services
Using Objects and Intrinsics
The WebService Behavior
HTML Pattern Matching
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms An HtmlForm control is required to process postback requests. A Web
Forms page might only have one server side <form> tag; however, client
Introducing Web Forms
forms (no runat=server attribute) can also postback to server-side logic
Working with Server Controls as long as a server-side form is present on the page.
Applying Styles to Controls
Server Control Form Validation The following sample illustrates using the HtmlForm control.
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference VB HtmlForm1.aspx
Web Forms Syntax Reference
[Run Sample] | [View Source]
ASP.NET Web Services
Introducing Web Services
Writing a Simple Web Service
Web Service Type Marshalling
Using Data in Web Services
Using Objects and Intrinsics
The WebService Behavior
HTML Pattern Matching
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms An HtmlImage control renders the image file specified by its Src property
in an HTML <img> tag.
Introducing Web Forms
Working with Server Controls
The following sample illustrates using the HtmlImage control.
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
VB HtmlImage1.aspx
Authoring Custom Controls
Web Forms Controls Reference
[Run Sample] | [View Source]
Web Forms Syntax Reference
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Applications The following sample illustrates using Submit and Reset
Application Overview HtmlInputButton controls.
Using the Global.asax File
Managing Application State
HttpHandlers and Factories
Cache Services
Caching Overview
Page Output Caching VB HtmlInputButton1.aspx
Page Fragment Caching
Page Data Caching [Run Sample] | [View Source]
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The HtmlInputCheckBox control accepts Boolean (true/false) input.
When selected, its Checked property is true. The following sample
Introducing Web Forms
illustrates using the HtmlInputCheckBox control.
Working with Server Controls
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
VB HtmlInputCheckBox1.aspx
Working with Business Objects
Authoring Custom Controls [Run Sample] | [View Source]
Web Forms Controls Reference
Web Forms Syntax Reference
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms An HtmlInputFile control handles uploading of binary or text files from a
client browser to the server. File-upload works with all HTML 3.2 and later
Introducing Web Forms
Web clients. Note that the Enctype attribute on the <form> tag must be
Working with Server Controls set to "multipart/form-data".
Applying Styles to Controls
Server Control Form Validation The following sample illustrates using the HtmlInputFile control.
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference VB HtmlInputFile1.aspx
Web Forms Syntax Reference
[Run Sample] | [View Source]
ASP.NET Web Services
Introducing Web Services
Writing a Simple Web Service
Web Service Type Marshalling
Using Data in Web Services
Using Objects and Intrinsics
The WebService Behavior
HTML Pattern Matching
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms You can use hidden controls within HTML forms to embed non-visible
information that will be sent back to the server the next time a user
Introducing Web Forms
performs a postback. This technique is commonly used to persist session-
Working with Server Controls dependent information without using cookies or session state. The Web
Applying Styles to Controls Forms framework uses this feature of HTML to automatically store and
restore the view state of ASP.NET server controls across round trips to the
Server Control Form Validation
server.
Web Forms User Controls
Data Binding Server Controls The following sample illustrates using the HtmlInputHidden control.
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference
Web Forms Syntax Reference
VB HtmlInputHidden1.aspx
ASP.NET Web Services
Introducing Web Services [Run Sample] | [View Source]
Writing a Simple Web Service
Web Service Type Marshalling
Using Data in Web Services
Using Objects and Intrinsics
The WebService Behavior
HTML Pattern Matching
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms An HtmlInputImage control is used to create a graphical button. Unlike
HtmlButton controls, all standard browser clients support image buttons.
Introducing Web Forms
Working with Server Controls
The following sample illustrates using the HtmlInputImage control.
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
VB HtmlInputImage1.aspx
Authoring Custom Controls
Web Forms Controls Reference
[Run Sample] | [View Source]
Web Forms Syntax Reference
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms An HtmlInputRadioButton control creates a single radio button input
field. Setting the Name attribute the same way on each radio button forms
Introducing Web Forms
a group in which only one radio button can be selected at a time. The
Working with Server Controls selected state must be tested on the individual radio buttons, however.
Applying Styles to Controls
Server Control Form Validation The following sample illustrates using the HtmlInputRadioButton
Web Forms User Controls control.
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference
Web Forms Syntax Reference VB HtmlInputRadioButton1.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The HtmlInputText control is a single-line input control that lets the user
enter text. HtmlInputText supports two behaviors. If Type is Text,
Introducing Web Forms
HtmlInputText operates as a standard text box. If Type is Password,
Working with Server Controls the user's input is masked by the "*" character to keep it private.
Applying Styles to Controls
Server Control Form Validation The following sample illustrates using the HtmlInputText control in both
Web Forms User Controls Text and Password modes.
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference
Web Forms Syntax Reference VB HtmlInputText1.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The HtmlSelect control provides a drop-down list. The following sample
illustrates using the HtmlSelect control.
Introducing Web Forms
Working with Server Controls
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization VB HtmlSelect1.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The HtmlTable control lets you build up a table programmatically by
adding HtmlTableRow controls to the table's Rows collection and
Introducing Web Forms
HtmlTableCell controls to the row's Cells collection. You can add content
Working with Server Controls to a table cell programmatically by adding controls to the cell's Controls
Applying Styles to Controls collection.
Server Control Form Validation
Web Forms User Controls The following sample illustrates using the HtmlTable control.
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference
Web Forms Syntax Reference VB HtmlTable1.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The HtmlTextArea control is a multiline input control that lets the user
enter text. The display width of HtmlTextArea is determined by its Cols
Introducing Web Forms
property, and the display height is determined by the Rows property.
Working with Server Controls
Applying Styles to Controls
The following sample illustrates using the HtmlTextArea control.
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
VB HtmlTextArea1.aspx
Web Forms Controls Reference
Web Forms Syntax Reference [Run Sample] | [View Source]
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The AdRotator control presents ad images that, when clicked, navigate to a new Web
location. Each time the page is loaded into the browser, an ad is randomly selected from a
Introducing Web Forms
predefined list. The following sample illustrates using the AdRotator control.
Working with Server Controls
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
VB AdRotator1.aspx
Working with Business Objects
Authoring Custom Controls [Run Sample] | [View Source]
Web Forms Controls Reference
Web Forms Syntax Reference
The rotation schedule for ads is defined in an XML file. The following example demonstrates
a rotation schedule in the file ads.xml.
ASP.NET Web Services
Introducing Web Services
Writing a Simple Web Service <Advertisements>
<Ad>
Web Service Type Marshalling <ImageUrl>/quickstart/aspplus/images/banner1.gif</ImageUrl>
Using Data in Web Services <NavigateUrl>http://www.microsoft.com</NavigateUrl>
Using Objects and Intrinsics <AlternateText>Microsoft.com</AlternateText>
<Keyword>Computers</Keyword>
The WebService Behavior <Impressions>80</Impressions>
HTML Pattern Matching </Ad>
</Advertisements>
The rotation file defines the following attributes of each ad. Except for ImageUrl, these
ASP.NET Web Applications attributes are optional.
Application Overview
Using the Global.asax File
Attribute Description
Managing Application State
ImageUrl An absolute or relative URL to the ad image file.
HttpHandlers and Factories
NavigateUrl The Web location to navigate to when the image is clicked.
If NavigateUrl is not set, the image is not clickable.
Cache Services AlternateText The text to render as the ALT attribute of the image. When
Caching Overview the page is viewed with Microsoft Internet Explorer, this
acts as a ToolTip for the ad.
Page Output Caching
Keyword Specifies a category for the ad that the page can filter on.
Page Fragment Caching
Impressions A number that indicates the "weight" of the ad in the
Page Data Caching schedule of rotation relative to the other ads in the file. The
larger the number, the more often the ad will be displayed.
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication VB Button2.aspx
Forms-based Authentication
Authorizing Users and Roles [Run Sample] | [View Source]
User Account Impersonation
Security and WebServices Mouse-Over Effects on Button
Localization You can hook the client script events onmouseover and onmouseout on
Internationalization Overview a Button control to provide mouse-over effects such as changing the font
or color of the button. Client attributes such as onmouseover are
Setting Culture and Encoding disregarded by ASP.NET on the server, and passed "as is" to the browser.
Localizing ASP.NET Applications If your application targets newer browsers that support DHTML, these
Working with Resource Files events will fire in the browser as the cursor passes over the button. The
following sample demonstrates buttons with mouse-over effects.
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
VB Button3.aspx
The SDK Debugger
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services The following sample demonstrates mode selection with a Calendar control.
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview VB Calendar2.aspx
Configuration File Format
[Run Sample] | [View Source]
Retrieving Configuration
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
VB Calendar3.aspx
Authorizing Users and Roles
User Account Impersonation
[Run Sample] | [View Source]
Security and WebServices
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
VB Calendar4.aspx
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
VB Calendar5.aspx
ASP.NET Web Forms The CheckBox server control accepts Boolean (true or false) input.
When selected, its Checked property is true. Typically a check box is
Introducing Web Forms
processed as one of several fields in a form; however, it can be used to
Working with Server Controls trigger postback to the server if its AutoPostBack property is true. The
Applying Styles to Controls following sample illustrates using the CheckBox control.
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls VB CheckBox1.aspx
Web Forms Controls Reference
Web Forms Syntax Reference [Run Sample] | [View Source]
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The CheckBoxList control provides a multiple-selection checked list. Like
other list controls, CheckBoxList has an Items collection with members
Introducing Web Forms
that correspond to each item in the list. To determine which items are
Working with Server Controls selected, test the Selected property of each item.
Applying Styles to Controls
Server Control Form Validation You can control the rendering of the list with the RepeatLayout and
Web Forms User Controls RepeatDirection properties. If RepeatLayout is Table, the list is
rendered within a table. If it is set to Flow, the list is rendered without any
Data Binding Server Controls
table structure. By default, RepeatDirection is Vertical. Setting this
Server-Side Data Access property to Horizontal causes the list to be rendered horizontally.
Data Access and Customization
Working with Business Objects The following sample illustrates using the CheckBoxList control.
Authoring Custom Controls
Web Forms Controls Reference
Web Forms Syntax Reference
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Services For server-side custom validation, place your custom validation in the
Introducing Web Services validator's OnServerValidate delegate.
Writing a Simple Web Service
Web Service Type Marshalling The following sample illustrates using the CustomValidator control.
Using Data in Web Services
Using Objects and Intrinsics
The WebService Behavior
HTML Pattern Matching
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Configuration
Configuration Overview Note that you can use explicitly-declared columns together with auto-
generated columns (AutoGenerateColumns=true). When used
Configuration File Format together, the explicitly-declared columns in the Columns collection are
Retrieving Configuration rendered first, and then the auto-generated columns are rendered. The
auto-generated columns are not added to the Columns collection.
Deployment
Deploying Applications Column Name Description
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips VB DataGrid2.aspx
Measuring Performance
[Run Sample] | [View Source]
ASP to ASP.NET Migration
Migration Overview A HyperLinkColumn presents the bound data in HyperLink controls.
Syntax and Semantics This is typically used to navigate from an item in the grid to a Details view
on another page. In the following example, the value IntegerValue data
Language Compatibility
field is passed as an argument in the URL to another page, and the
COM Interoperability StringValue data field is used as the display text of the hyperlink.
Transactions
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com VB DataGrid3.aspx
VB DataGrid4.aspx
VB DataGrid5.aspx
VB DataGrid6.aspx
By using TemplateColumn objects for the fields you want to edit, you
can precisely control how the data is edited. In the following example, the
Quantity and Gift Wrap fields are editable in all rows. When the "Update
Totals" button is clicked, the grid's Items collection is traversed to extract
the current values for these fields, and the data source is updated.
VB DataGrid13.aspx
Each column in the grid has a Visible property. Setting Visible to false
hides a column.
VB DataGrid7.aspx
Data in a grid is commonly sorted by clicking the header of the column you
wish to sort. You can enable sorting in DataGrid by setting AllowSorting
to true. When enabled, the grid renders LinkButton controls in the
header for each column. When the button is clicked, the grid's
SortCommand event is thrown. It's up to you to handle this event in your
code. Because DataGrid always displays the data in the same order it
occurs in the data source, the typical logic sorts the data source, and then
rebinds the data to the grid.
VB DataGrid8.aspx
You can customize the grid's sorting behavior by creating the Columns
collection and manipulating the SortExpression for each column. (For
auto-generated columns, the SortExpression is the same as the data
field.) Omitting SortExpression on a column disables sorting by that
column.
VB DataGrid9.aspx
Paging in DataGrid
The DataGrid provides the means to display a group of records from the
data source (for example, the first 10), and then navigate to the "page"
containing the next 10 records, and so on through the data.
VB DataGrid10.aspx
The DataGrid has a built-in page navigation control, called the "pager,"
which displays either as "next/previous" buttons or as a set of numeric
page buttons. You can hide the built-in pager user interface and supply
your own paging UI.
To change the page, you must set the CurrentPageIndex to the desired
page (base 0), and rebind the data source to the grid.
VB DataGrid11.aspx
For very large data models, it is expensive to load the entire data source
each time the grid is paged. A common alternative is to retrieve the data in
page-size chunks, rather than retrieving all of the data and then stepping
into the current row.
VB DataGrid12.aspx
Web Service Type Marshalling SelectedItemTemplate If defined, determines the content and
layout of the selected item. If not
Using Data in Web Services defined, ItemTemplate
Using Objects and Intrinsics (AlternatingItemTemplate) is used.
The WebService Behavior EditItemTemplate If defined, determines the content and
layout of the item being edited. If not
HTML Pattern Matching
defined, ItemTemplate
(AlternatingItemTemplate,
ASP.NET Web Applications SelectedItemTemplate) is used.
Application Overview HeaderTemplate If defined, determines the content and
layout of the list header. If not defined,
Using the Global.asax File
the header is not rendered.
Managing Application State
FooterTemplate If defined, determines the content and
HttpHandlers and Factories layout of the list footer. If not defined,
the footer is not rendered.
Cache Services
Caching Overview Templates define the HTML elements and controls that should be displayed for an item, as well as the layout of
these elements. Style formatting -- font, color, and border attributes -- is set via styles. Each template has its own
Page Output Caching
style property. For example, styles for the EditItemTemplate are set through the EditItemStyle property.
Page Fragment Caching
Page Data Caching A third set of properties affect the overall rendering of DataList. By default, DataList items render within a table
as a single vertical column. Setting the RepeatLayout property to Flow removes the HTML table structure from
the rendering of the list.
Configuration
Configuration Overview
DataList supports directional rendering through the RepeatDirection property, meaning it can render its items
Configuration File Format
horizontally or vertically. Since page width is the dimension that the developer must control in Web user interface,
Retrieving Configuration DataList permits the developer to control the number of "columns" that are rendered (RepeatColumns),
regardless of whether the items are rendered horizontally or vertically.
Deployment
Deploying Applications If RepeatDirection is Horizontal and RepeatColumns is five, the items are rendered in rows containing five
columns.
Using the Process Model
Handling Errors
1 2 3 4 5
6 7 8 9 10
Security
11 12 13
Security Overview
Authentication & Authorization
If RepeatDirection is Vertical, and RepeatColumns remains set to five, the items are rendered in five
Windows-based Authentication
columns, each equal in length to the total number of items divided by five.
Forms-based Authentication
Authorizing Users and Roles
1 4 7 10 13
User Account Impersonation
2 5 8 11
Security and WebServices
3 6 9 12
Localization
The following sample illustrates using a simple DataList control.
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview VB DataList1.aspx
Trace Logging to Page Output
Application-level Trace Logging [Run Sample] | [View Source]
<EditItemTemplate>
Item: <asp:TextBox id="Text1" runat="server"
Text='<%# ((DataRowView)Container.DataItem)["Item"] %>'
/><br>
<asp:LinkButton id="button1" runat="server"
Text="Update"
Command="update"
/>
<asp:LinkButton id="button2" runat="server"
Text="Cancel"
Command="cancel"
/>
</EditItemTemplate>
The EditItemTemplate interacts with another property: EditItemIndex. By default, the value of
EditItemIndex is -1, meaning none of the items in the list is being edited. When EditItemIndex is set to a
particular item, that item is displayed using the EditItemTemplate.
The DataList also supplies three events that can be used to support editing. EditCommand is thrown when an
"edit" command button control is clicked within the list's ItemTemplate. It's up to you to handle this event in
your code. The typical logic sets EditItemIndex to the selected item, and then rebinds the data to the DataList
as shown in the following example.
VB
The EditItemTemplate typically contains "update" and "cancel" command buttons. These buttons cause the
UpdateCommand and CancelCommand events to be thrown, respectively. It's up to you to handle these
events in your code. The typical logic for "cancel" sets EditItemIndex to -1, and then rebinds the data to the
VB
The typical logic for "update" updates the data source, sets EditItemIndex to -1, and then rebinds the data to
the DataList. The following sample illustrates editing items in DataList.
VB DataList3.aspx
ASP.NET Web Forms The DropDownList control provides a single-select drop-down list. The
following sample illustrates using a simple DropDownList control.
Introducing Web Forms
Working with Server Controls
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization VB DropDownList1.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The Image control displays the image defined by its ImageUrl property.
The following sample illustrates using the Image control.
Introducing Web Forms
Working with Server Controls
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization VB Image1.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Applications The following sample illustrates using the ImageButton control as an
Application Overview image map.
Using the Global.asax File
Managing Application State
HttpHandlers and Factories
Cache Services
Caching Overview
Page Output Caching VB ImageButton2.aspx
Page Fragment Caching
Page Data Caching [Run Sample] | [View Source]
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication VB ImageButton3.aspx
Forms-based Authentication
Authorizing Users and Roles [Run Sample] | [View Source]
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The Label control displays text in a set location on the page. Unlike static
text, the Text property of a label can be set programmatically. The
Introducing Web Forms
following sample illustrates using the Label control.
Working with Server Controls
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
VB Label1.aspx
Working with Business Objects
Authoring Custom Controls [Run Sample] | [View Source]
Web Forms Controls Reference
Web Forms Syntax Reference
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms Like the Button control, LinkButton is used to post a Web Forms page
back to the server. For additional button examples, see Button and
Introducing Web Forms
ImageButton. For a control that navigates to another page, see HyperLink.
Working with Server Controls
Applying Styles to Controls
The following sample illustrates using the LinkButton control.
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
VB LinkButton1.aspx
Web Forms Controls Reference
Web Forms Syntax Reference
[Run Sample] | [View Source]
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The ListBox control provides a single-selection or multiple-selection list. To
enable multiple selection, set the SelectionMode property to Multiple.
Introducing Web Forms
Working with Server Controls
The following sample illustrates using a simple ListBox control.
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
VB ListBox1.aspx
Authoring Custom Controls
Web Forms Controls Reference
[Run Sample] | [View Source]
Web Forms Syntax Reference
The following sample illustrates using data binding with a ListBox control.
ASP.NET Web Services
Introducing Web Services
Writing a Simple Web Service
Web Service Type Marshalling
Using Data in Web Services
Using Objects and Intrinsics
The WebService Behavior
HTML Pattern Matching VB ListBox2.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The Panel control is a container for other controls. It is especially useful
when you want to generate controls programmatically or hide or show a
Introducing Web Forms
group of controls, as shown in the following example.
Working with Server Controls
Applying Styles to Controls
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
VB Panel1.aspx
Working with Business Objects
Authoring Custom Controls [Run Sample] | [View Source]
Web Forms Controls Reference
Web Forms Syntax Reference
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The PlaceHolder control can be used as a container control within a
document to dynamically load other controls. The PlaceHolder control has
Introducing Web Forms
no HTML-based output and is used only to mark a spot for other controls
Working with Server Controls that can be added to the Controls collection of the PlaceHolder during
Applying Styles to Controls page execution. The following example illustrates adding controls to a
PlaceHolder.
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference VB PlaceHolder1.aspx
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The RadioButton control permits you to intersperse the radio buttons in a
group with other content in the page. The buttons in the sample are
Introducing Web Forms
grouped logically because they all share the same GroupName.
Working with Server Controls
Applying Styles to Controls
The following sample illustrates using the RadioButton control.
Server Control Form Validation
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
VB RadioButton1.aspx
Web Forms Controls Reference
Web Forms Syntax Reference [Run Sample] | [View Source]
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The RadioButtonList control provides a single-selection checked list. Like
other list controls, RadioButtonList has an Items collection with
Introducing Web Forms
members that correspond to each item in the list. To determine which
Working with Server Controls items are selected, test the Selected property of each item.
Applying Styles to Controls
Server Control Form Validation You can control the rendering of the list with the RepeatLayout and
Web Forms User Controls RepeatDirection properties. If the value of RepeatLayout is Table, the
list will be rendered in a table. If it is set to Flow, the list will be rendered
Data Binding Server Controls
without any table structure. By default, the value of RepeatDirection is
Server-Side Data Access Vertical. Setting this property to Horizontal causes the list to be
Data Access and Customization rendered horizontally.
Working with Business Objects
Authoring Custom Controls The following sample illustrates using the RadioButtonList control.
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The Table control builds up a table programmatically by adding
TableRows to the Rows collection of the table, and TableCells to the
Introducing Web Forms
Cells collection of the row. You can add content to a table cell
Working with Server Controls programmatically by adding controls to the Controls collection of the cell.
Applying Styles to Controls
Server Control Form Validation The following sample illustrates using the Table control.
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference VB Table1.aspx
Web Forms Syntax Reference
[Run Sample] | [View Source]
ASP.NET Web Services
Introducing Web Services
Writing a Simple Web Service
Web Service Type Marshalling
Using Data in Web Services
Using Objects and Intrinsics
The WebService Behavior
HTML Pattern Matching
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The TextBox control enables the user to enter text. By default, the
TextMode of TextBox is SingleLine, but you can modify the behavior of
Introducing Web Forms
TextBox by setting the TextMode to Password or MultiLine.
Working with Server Controls
Applying Styles to Controls
The display width of TextBox is determined by its Columns property. If
Server Control Form Validation TextMode is MutliLine, the display height of TextBox is determined by
Web Forms User Controls the Rows property.
Data Binding Server Controls
Server-Side Data Access The following sample illustrates using the TextBox control.
VB TextBox1.aspx
ASP.NET Web Services
Introducing Web Services
[Run Sample] | [View Source]
Writing a Simple Web Service
Web Service Type Marshalling
Using Data in Web Services
Using Objects and Intrinsics
The WebService Behavior
HTML Pattern Matching
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
ASP.NET Web Forms The XML control can be used to write out an XML document or the results
of an XSL Transform. The DocumentSource specifies the XML document
Introducing Web Forms
to use. This document will be written directly to the output stream unless
Working with Server Controls TransformSource is also specified. TransformSource must be a valid
Applying Styles to Controls XSL Transform document and will be used to transform the XML document
before its contents are written to the output stream. The following sample
Server Control Form Validation
illustrates using a simple XML control.
Web Forms User Controls
Data Binding Server Controls
Server-Side Data Access
Data Access and Customization
Working with Business Objects
Authoring Custom Controls
Web Forms Controls Reference
VB Xml1.aspx
Web Forms Syntax Reference
Cache Services
Caching Overview
Page Output Caching
Page Fragment Caching
Page Data Caching
Configuration
Configuration Overview
Configuration File Format
Retrieving Configuration
Deployment
Deploying Applications
Using the Process Model
Handling Errors
Security
Security Overview
Authentication & Authorization
Windows-based Authentication
Forms-based Authentication
Authorizing Users and Roles
User Account Impersonation
Security and WebServices
Localization
Internationalization Overview
Setting Culture and Encoding
Localizing ASP.NET Applications
Working with Resource Files
Tracing
Tracing Overview
Trace Logging to Page Output
Application-level Trace Logging
Debugging
The SDK Debugger
Performance
Performance Overview
Performance Tuning Tips
Measuring Performance
Sample Applications
A Personalized Portal
An E-Commerce Storefront
A Class Browser Application
IBuySpy.com
Hello World!
Hello World!
Hello World!
Hello World!
Hello World!
Hello World!
Hello World!
Hello World!
Value: 100
Value: 99
Value: 98
Value: 97
Value: 96
Value: 95
Value: 94
Value: 93
Value: 92
Value: 91
Value: 90
Value: 89
Value: 88
Value: 87
Value: 86
Value: 85
Value: 84
Value: 83
Value: 82
Value: 81
Value: 80
Value: 79
Value: 78
Value: 77
Value: 76
Value: 75
Value: 74
Value: 73
Value: 72
Value: 71
Value: 70
Value: 69
Value: 68
Value: 67
Value: 66
Value: 65
Value: 64
Value: 63
Value: 62
Value: 61
Value: 60
Value: 59
Value: 58
Value: 57
Value: 56
Value: 55
Value: 54
Value: 53
Value: 52
Value: 51
Value: 50
Value: 49
Value: 48
Value: 47
Value: 46
Value: 45
Value: 44
Value: 43
Value: 42
Value: 41
Value: 40
Value: 39
Value: 38
Value: 37
Value: 36
Value: 35
Value: 34
Value: 33
Value: 32
Value: 31
Value: 30
Value: 29
Value: 28
Value: 27
Value: 26
Value: 25
Value: 24
Value: 23
Value: 22
Value: 21
Value: 20
Value: 19
Value: 18
Value: 17
Value: 16
Value: 15
Value: 14
Value: 13
Value: 12
Value: 11
Value: 10
Value: 9
Value: 8
Value: 7
Value: 6
Value: 5
Value: 4
Value: 3
Value: 2
Value: 1
Welcome to ASP.NET
Welcome to ASP.NET
The below content has been hidden from browser clients using a server-side comment (view the .aspx
source to see what we mean :-)
MathService
The following operations are supported. For a formal definition, please review the Service Description.
● Multiply
● Divide
● Add
● Subtract
Recommendation: Change the default namespace before the web service is made public.
Each web service needs a unique namespace to identify it so that client applications can distinguish it from other
services on the web. http://tempuri.org/ is available for web services that are under development, but published
web services should use a more permanent namespace.
Your web service should be identified by a namespace that you control. For example, you could use your
company's Internet domain name as part of the namespace. Although many web service namespaces look like
URLs, they need not point to an actual resource on the web. (Web service namespaces are URIs.)
For ASP.NET Web Services, the default namespace can be changed using the WebService attribute's Namespace
property. The WebService attribute is an attribute applied to the class that contains the web service methods.
Below is a code example that sets the namespace to "http://microsoft.com/webservices/":
C#
[WebService(Namespace="http://microsoft.com/webservices/")]
public class MyWebService {
// implementation
}
Visual Basic.NET
For more details on XML namespaces, see the W3C recommendation on Namespaces in XML.
Operand 1:
15
Operand 2:
5
DataTypes
The following operations are supported. For a formal definition, please review the Service Description.
● SayHello
● GetOrders
● SayHelloName
● GetMode
● GetOrder
● GetIntArray
Recommendation: Change the default namespace before the web service is made public.
Each web service needs a unique namespace to identify it so that client applications can distinguish it from other
services on the web. http://tempuri.org/ is available for web services that are under development, but published
web services should use a more permanent namespace.
Your web service should be identified by a namespace that you control. For example, you could use your
company's Internet domain name as part of the namespace. Although many web service namespaces look like
URLs, they need not point to an actual resource on the web. (Web service namespaces are URIs.)
For ASP.NET Web Services, the default namespace can be changed using the WebService attribute's Namespace
property. The WebService attribute is an attribute applied to the class that contains the web service methods.
Below is a code example that sets the namespace to "http://microsoft.com/webservices/":
C#
[WebService(Namespace="http://microsoft.com/webservices/")]
public class MyWebService {
// implementation
}
Visual Basic.NET
For more details on XML namespaces, see the W3C recommendation on Namespaces in XML.
Hello World!HelloBob
OrderID: 323232
Price: 34.5
Order#: 0
OrderID: 323232
Price: 34.5
Order#: 1
OrderID: 323232
Price: 34.5
Order#: 2
OrderID: 323232
Price: 34.5
DataService
The following operations are supported. For a formal definition, please review the Service Description.
● PutTitleAuthors
● GetTitleAuthors
Recommendation: Change the default namespace before the web service is made public.
Each web service needs a unique namespace to identify it so that client applications can distinguish it from other
services on the web. http://tempuri.org/ is available for web services that are under development, but published
web services should use a more permanent namespace.
Your web service should be identified by a namespace that you control. For example, you could use your
company's Internet domain name as part of the namespace. Although many web service namespaces look like
URLs, they need not point to an actual resource on the web. (Web service namespaces are URIs.)
For ASP.NET Web Services, the default namespace can be changed using the WebService attribute's Namespace
property. The WebService attribute is an attribute applied to the class that contains the web service methods.
Below is a code example that sets the namespace to "http://microsoft.com/webservices/":
C#
[WebService(Namespace="http://microsoft.com/webservices/")]
public class MyWebService {
// implementation
}
Visual Basic.NET
For more details on XML namespaces, see the W3C recommendation on Namespaces in XML.
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
22- One Microsoft Way Redmond CA 98005 False
2222
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- One Microsoft Way Redmond CA 98005 True
1517
151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
254-
85- One Microsoft Way Redmond CA 98005 False
8700
267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
88- S SD 111 234-6545 s s KS 11234 True
7645
999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
Buenos Aires
99- Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
8888
999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
SessionService1
The following operations are supported. For a formal definition, please review the Service Description.
● UpdateAppCounter
● UpdateHitCounter
Recommendation: Change the default namespace before the web service is made public.
Each web service needs a unique namespace to identify it so that client applications can distinguish it from other
services on the web. http://tempuri.org/ is available for web services that are under development, but published
web services should use a more permanent namespace.
Your web service should be identified by a namespace that you control. For example, you could use your
company's Internet domain name as part of the namespace. Although many web service namespaces look like
URLs, they need not point to an actual resource on the web. (Web service namespaces are URIs.)
For ASP.NET Web Services, the default namespace can be changed using the WebService attribute's Namespace
property. The WebService attribute is an attribute applied to the class that contains the web service methods.
Below is a code example that sets the namespace to "http://microsoft.com/webservices/":
C#
[WebService(Namespace="http://microsoft.com/webservices/")]
public class MyWebService {
// implementation
}
Visual Basic.NET
For more details on XML namespaces, see the W3C recommendation on Namespaces in XML.
UpdateHitCounter Output:
UpdateAppCounter Output:
Submit Query
Request is Ending...
ProductID CategoryID ProductName ProductDescription UnitPrice ImagePath ServingSize Servings Quantity MinOnHand MaxOnHand Manufacturer
Lemon Lime
Fizzy Fizzing 6 fl oz (180
3004 3 Quencher 1.05 /quickstart/aspplus/images/soda8.gif 5 0 0 0 Sparkle Co.
Drink mL)
Description
Marigold Marigold Whole 8 fl oz (240 Marigold
1005 1 1.39 /quickstart/aspplus/images/milk6.gif 8 0 0 0
Whole Milk Milk Description mL) Meadows
Using PageState
Hello World!
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
22- One Microsoft Way Redmond CA 98005 False
2222
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- One Microsoft Way Redmond CA 98005 True
1517
151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
254-
85- One Microsoft Way Redmond CA 98005 False
8700
267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
88- S SD 111 234-6545 s s KS 11234 True
7645
999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
Buenos Aires
99- Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
8888
999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
000-
00- Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
0011
000-
00- Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
0012
000-
00- Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
0013
000-
00- maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
0014
000-
00- Changc Zork 808 555-5555 On My Way Redmond CA 98005 False
0015
000-
00- Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
0016
000-
00- efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
0017
000-
00- pippo pluto 293849832 no way23 tel-aviv23 CA 98005 False
0018
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
22- One Microsoft Way Redmond CA 98005 False
2222
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- One Microsoft Way Redmond CA 98005 True
1517
151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
254-
85- One Microsoft Way Redmond CA 98005 False
8700
267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
88- S SD 111 234-6545 s s KS 11234 True
7645
999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
Buenos Aires
99- Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
8888
999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
Fragment Caching
000-
00- REK Real Estate King 808 555-5555 Nutscrape Sucks!! Redmond KS 98005 False
0010
000-
00- Heikkinen Kimmo 808 555-5555 Finland Espoo TN 98005 False
0011
000-
00- Heray Cuisn 5555555555 Dead Java Way Jan Mayen OR 98005 False
0012
000-
00- Hughee Mikee 808 555-5555 One Microsoft Way Redmond CA 12345 False
0013
000-
00- maxsun pittman1 305 237-3000 VB Net Wiz Miami IN 33132 False
0014
000-
00- Changc Zork 808 555-5555 On My Way Redmond CA 98005 False
0015
000-
00- Hakan Eren 216 342-1111 Uskudar Mt. Hood OR 95432 True
0016
000-
00- efwef33333 Jebo z Lesa 123 435-4356 Smetiar 33 Bratislava CA 81000 False
0017
000-
00- pippo pluto 293849832 no way23 tel-aviv23 CA 98005 False
0018
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
22- One Microsoft Way Redmond CA 98005 False
2222
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- One Microsoft Way Redmond CA 98005 True
1517
151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
254-
85- One Microsoft Way Redmond CA 98005 False
8700
267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
88- S SD 111 234-6545 s s KS 11234 True
7645
999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
Buenos Aires
99- Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
8888
999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
Caching Data
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
22- One Microsoft Way Redmond CA 98005 False
2222
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- One Microsoft Way Redmond CA 98005 True
1517
151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
254-
85- One Microsoft Way Redmond CA 98005 False
8700
267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
88- S SD 111 234-6545 s s KS 11234 True
7645
999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
Buenos Aires
99- Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
8888
999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
File Dependencies
000-00-0000 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 false
000-00-0001 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 false
000-00-0002 Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 false
172-32-1176 White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 true
213-46-8915 Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 true
238-95-7766 Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 true
267-41-2394 O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose CA 95128 true
274-80-9391 Straight Dean 415 834-2919 5420 College Av. Oakland CA 94609 true
409-56-7008 Bennet Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 true
427-17-2319 Dull Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 true
472-27-2349 Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 true
486-29-1786 Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 true
527-72-3246 Greene Morningstar 615 297-2723 22 Graybar House Rd. Nashville TN 37215 false
648-92-1872 Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 true
672-71-3249 Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 true
712-45-1867 del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 true
722-51-5454 DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 true
724-08-9931 Stringer Dirk 415 843-2991 5420 Telegraph Av. Oakland CA 94609 false
724-80-9391 MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 true
756-30-7391 Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 true
807-91-6654 Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 true
846-92-7186 Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 true
893-72-1158 McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 false
899-46-2035 Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 true
998-72-3567 Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 true
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 true
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-333 Doe Jane 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-333 Doe Jane 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond TX 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond TX 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1114 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-22221111 Doe Joh11111 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe45345 John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-11115 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-11115 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-111112341234 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111454656 Doe sandeep 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 catherine zhang 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way ray WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way rayee WA 98052 True
999-99-9999 Mark Hofman 555 555-5050 90212 Concord Dallas TX 98052 True
111-11-1111 Doe John 666 555-5050 One sun Way chennai Tamil Nadu 98052 True
111-11-1119 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1119 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doeg John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doeq John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-111111111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-111111111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-11111111122 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doee John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
00-00-55 Doezy Johnny 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe Sinisa 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-2222 AAAA BBBBB 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111A1 Doea1 Johna1 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Lamm Domm 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
0000000 Boon John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Gates Bill 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Aoe Aohn 555 555-5050 One Microsoft Way Redmond CA 98052 True
111-11-1111 pppppppp John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1555 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 False
111-11-1556 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Narasimhan Vidhya 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 don rop 765 555-5090 One Way Ref ny 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111222 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
2121 andy fools 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98053 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Bidar Narsing Rao 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 test John 555 555-5050 One Microsoft Way Redmond WA 98052 True
000-00-0003 Fan Fan Richie 123 456-7890 123 Safety Ave Newark NJ 07102 True
000-00-0003 Fan Fan Richie 123 456-7890 123 Safety Ave Newark NJ 07102 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-19-1141 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doeccc John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doeccc John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Andy John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1311 Does John 555 555-5050 One Microsoft Way Redmond WA 98051 True
111-11-1311 Does John 555 555-5050 One Microsoft Way Redmond t7u 98051 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
430943092 Anderson Pam 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
666-66-666 Nielsen Mogens 555 555-5050 Dr. Holstvej 34 Åbyhøj DK 8230 True
111-11-9999 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-66666 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
. . . . My Way . . . True
111-11-2222 Don John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-2222 Don John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-2222 Don John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
999-88-9999 Ronbo Rules 555 555-5050 One Microsoft Way Malibu CA 00001 False
999-88-9999 Ronbo Rules 555 555-5050 One Microsoft Way Malibu CA 00001 False
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
987-65-4321 Drewes Kooi 555 555-5050 One Microsoft Way Redmond OH 43081 True
987-65-4321 Drewes Kooi 555 555-5050 One Microsoft Way Redmond OH 43081 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doesd John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1114 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1114 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-11112323 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1199 Penny Lane (604) 555-5050 32 Redfield Avenue Redmond WA 32265 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-9111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe Johnny 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Clark Mary Higgins 630-213-2345 2345 Granger st bartlett IL 60103 True
111-11-1111 Madhavan Sridhar 555 555-5050 One Microsoft Way Redmond WA 98052 False
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
555555555555555 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 uwo huogo 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 9805222 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John ! 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Al Reggiori 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
343434 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Dum Dum Doe 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Dum Dum Doe 555 555-5050 One Microsoft Way Redmond WA 98052 False
111-11-1111 Jum Jum JJJJJJJ 555 555-5050 One Microsoft Way Redmond WA 01702 False
111-11-1111 Bunter Billy 555 555-5050 One Microsoft Way Redmond Washington 98052 True
111-11-1111 Bunter Billy 555 555-5050 One Microsoft Way Redmond Washington 98052 True
111-11-1111 Bunter Billy 555 555-5050 One Microsoft Way Redmond Washington 98052 False
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-7890 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-7890 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
0-11-1111 aaa aaaaa 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 HIH John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Khajah Farook 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA1111 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA1111 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112 Anderson Mr. 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112 Sridhar Madhavan 93836068 One Microsoft Way Redmond WA 98052 True
111-11-1112 Sridhar Madhavan 93836068 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond W 98052 True
111-11-1111 Doe123 John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 joj John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1122 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1110 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
999-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe2222 John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 AAAA John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Jane John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 John John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 11111 John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
110-767-9186 Patil Ajay 732-205-9511 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
essai Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond CE 98052 True
111-11-1111 Doe1 John2 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe cxvcxvx 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5051 One Microsoft Way Redmond WA 98052 False
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
999-11-1111 XXXX John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-22-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 peis John 555 555-5050 One Microsoft Way Redmond WA 98052 True
2222222222222 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Panacosauro Roger 555 555-5050 One Microsoft Way Redmond WA 98052 True
011-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Jabbah Da Hut 555 555-5050 One Microsoft Way Southport WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 Booger Face Redmond WA 98052 True
999-99-9999 Vanoss Maureen 111-222-3333 123 Main Street seattle WA 98052 True
999-99-9999 Vanoss Maureen 111-222-3333 123 Main Street seattle WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-22-3333 Rockwell MIchael 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-22-3333 Rockwell MIchael 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Me Was Here 555 555-5050 One Microsoft Way Austin TX 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-45678 fdsafdaf John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1114 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1112` Doe1 John1 555 555-5052 Two Microsoft Way Redmond WA 98052 True
111-11 Doe1 John1 555 555-5052 Two Microsoft Way Redmond WA 98052 True
111-11 Doe1 John1 555 555-5052 Two Microsoft Way Redmond WA 98052 True
111-11 Doe1 John1 555 555-5052 Two Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Ray John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Xmean John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Cherk Mukey 555 555-5050 One Microsoft Way Houston TX 77077 True
111-11-1111 Tian Y. 555 555-5050 One Microsoft Way Redmond NJ 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 ron jermy 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1111 Doe Johns 555 555-5050 One Microsoft Way Redmond WA 98052 True
111-11-1113 Doe John 555 555-5050 One Microsoft Way Redmond WA 98052 True
4444444 Milton John 333 555 555555 2 His Way Bangalore KA 09099 True
City: Redmond
State: WA
000-
00- amparoklp amarosa 808 555-5555 One Microsoft Way Redmond IN 98005 True
0019
000-
00- Morrison Skot 808 555-5551 One Microsoft Way Redmond CA 98005 False
0020
000-
00- The Ripper Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0021
000-
00- Rogériod test Sampaio 808 555-5555 One Microsoft Way Redmond CA 98005 True
0022
000-
00- Arsen Jack 808 555-5555 One Microsoft Wa Redmond CA 98005 False
0023
000-
00- Doe Carlo 808 555-5555 One Microsoft Way Redmond xx 98005 False
0024
000-
00- Doaks Joe 808 555-5553 One Microsoft Way Redmond CA 98052 False
0025
000-
00- Alexio Knight 808 555-5555 churchill street Montreal CA 98005 False
0026
000-
00- RAZ Fazfaz 111 111-1111 Apple Computer L.A. OR 99099 True
0027
000-
00- Caipang Nelgraine 032 2340119 Cebu City, Philippines Cebu City CA 98005 True
0028
000-
00- Ramsha RD 091 4255-552 Great Indian Coimbatore TN 64100 True
0029
000-
00- Hu Yu 123 123-1234 One Microsoft Way Redmond IN 98005 False
0030
000-
00- qwrwq Max 808 555-5555 One Microsoft Way Redmond CA 98005 False
0031
000-
00- Tester Theory 808 555-5555 One Microsoft Way Redmond CA 98005 False
0032
000-
00- Ram Ram 846 676-5555 Indian Gate Way CBE TN 64100 False
0033
000-
00- Wadd Johnny 702 555-5555 One Paradise Blvd Las Vegas NV 89121 False
0034
000-
00- The Clown Homey 554 444-1232 Circus Hell CA 33243 True
0035
000-
00- Kansas City Is a Mighty Pretty But it Aint Got What I got ks 98005 False
0036
000-
00- Does Dallas Harry 808 555-5555 One Microsoft Way Redmond KS 98005 False
0037
000-
00- Titi Toto 808 555-5555 One Microsoft Way Paris IN 75000 True
0038
000-
00- Dokes Jeremy 808 555-5555 One Microsoft Way Redmond CA 98005 True
0039
000-
00- Lowe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 False
0040
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0041
000-
00- Carlson Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
0042
000-
2011 Palomar Airport Road,
00- Riad Craig 760 496-0200 Carlsbad CA 92009 True
Suite 200
0043
000-
00- Doeremi Johnny 808 555-5555 One Microsoft Way Redmond KS 98005 True
0044
000-
00- Jamie Washere 808 555-5555 axaxaxaxaxaxax axaxaxaxaxaxaxaxa CA 98005 False
0045
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0046
000-
00- This .Net is the best ever! 808 555-5555 One Way Redmond CA 98005 False
0047
000-
Hey, Jen it's
00- Cool eh? 808 555-5555 Let's Party!!!! Downtown! CA 98005 False
Friiiiday!
0048
000-
Bjorn is the
00- CRAAAAAAAA 808 555-5555 Bow chicka bow wow! Chicka bow CA 98005 False
man!
0049
000-
00- Bjorn has 12! Think about it! TWEL 808 555-5555 Bow chicka bow wow Bjorn! Redmond CA 98005 False
0050
000-
00- Kaushik fefdssfd 808 555-5555 One Microsoft Way Redmond CA 98005 False
0051
000-
00- olivier ppol 808 555-5555 One Microsoft Way rftyuerter CA 98006 False
0052
000-
00- Dias dos Santos Leonardossss 808 555-5554 One Microsoft Way Redmond CA 98005 False
0053
000-
00- Hockey Rocks 808 555-5555 One Microsoft Way Redmond CA 98005 False
0054
000-
00- PIZZA PARTY! PIZZA PARTY! 808 555-5555 Kabul Redmond MI 98005 False
0055
000-
00- Test Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0056
000-
Gingerbread
00- pizza party! 808 555-5555 You hava coupons? GIMME NOW!!! CA 98005 False
Ratte!
0057
000-
00- Jen Has some! Bow chicka Jen! 808 555-5555 hahahahha, im a prude! no music for me! CA 98005 False
0058
000-
00- NERD! ALERT! 808 555-5555 Right here, on THIS PAGE!!!! CA 98005 False
0059
000-
00- Hansen Jack 808 555-5555 One Microsoft Way Redmond OR 98005 False
0060
000-
00- Albright Chris 808 555-5555 One Microsoft Way Redmond CA 98005 False
0061
000-
00- Nat Dune 808 555-5555 One Microsoft Way Redmond CA 98005 False
0062
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0065
000-
00- voytek dj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0066
000-
00- Doe jjjjjjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
0067
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
00- Johnson Martin 808 222-1234 Java memorial way Cochin, India CA 08873 False
0070
000-
00- Doe Alex 808 555-5555 One Microsoft Way Redmond CA 98005 True
0071
000-
00- Flintstone Fred 808 555-5555 South Africa Pretoria TN 98005 False
0072
000-
00- Does Elaine 808 555-5555 1445 Alpina St Salina KS 63004 False
0077
000-
00- doe John 808 555-5555 One Microsoft WrongWay Redmond CA 98009 False
0078
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0079
000-
00- Issa Mohammed 808 555-5555 One Microsoft Way Redmond CA 98005 False
0080
000-
00- Doe Raghavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0082
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0085
000-
00- ak1 ak1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
000-
00- Golh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0089
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0090
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0091
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
00- Doe juuu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
000-
00- geff blatt 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0101
000-
00- Murad Kayani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0110
000-
00- Rus Tome 808 555-5555 My Way Redmond CA 98005 False
0111
000-
00- Cheng Henry 808 555-5555 One Microsoft Way Redmond IN 98005 True
0112
000-
00- Doe Aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0120
000-
00- l abcdefg 808 555-5555 One Redmond CA 98005 False
0121
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0122
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0123
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
000-
00- pp pp 808 555-5555 pp pp OR 98005 False
0147
000-
00- • • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20013 False
0170
000-
00- •• • 808 555-5555 CRAZYINSUN CRAZYINSUN CA 20001 True
0180
000-
00- Walker Glenn 808 555-5555 One Microsoft Way Redmond CA 98005 True
0199
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0201
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0232
000-
00- Aoki Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
000-
00- 456Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0333
000-
00- Doe Jefferson 808 555-5555 One Microsoft Way Redmond CA 98005 False
0350
000-
00- Venkaesh Prasad 808 555-5555 13131310 Hawthorne CA 98005 False
0399
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0400
000-
00- Cheney Richard 808 555-5555 Executive Building Washington CA 98005 True
0433
000-
00- Rajesh1 krishna 808 555-5555 Great Indian Desert southport CA 56003 False
0435
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0444
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0456
000-
00- Doe Head 808 555-5555 One Microsoft Way Redmond CA 98005 False
0483
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0540
000-
00- 34543 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0545
000-
00- Doe Joe 808 555-5555 Two Microsoft Way Redmond OR 98111 True
0550
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0578
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0655
000-
00- Eriko Hidalgo 808 555-5555 Fuck Taliban Redmond CA 98005 False
0666
000-
00- V T 555-555-5555 TEST TEST IN 98005 True
0678
000-
00- aaron aaron 808 555-5555 One Microsoft Way Redmond CA 98005 False
0690
000-
00- donald John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0708
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0765
000-
00- Anantha Ram 123-563-9800 Indian Hyderbad CA 56003 False
0766
000-
00- Lionel Aaaaaa 808 555-5555 Ahhhh Redmond CA 98005 False
0777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0789
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0800
000-
00- Doe John 808 555-5555 old man's way Redmond CA 98005 False
0898
000-
00- aabb aabb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0987
000-
00- al Turabi Devil-Man 808 555-5555 Slaughter-him-now Khartoum MD 98005 True
0999
000-
00- moran juliet 808 555-5555 One Microsoft Way Redmond MD 98005 False
1000
000-
00- pasupuleti prashant 40993993290 One Microsoft Way Redmond UT 98005 True
1001
000-
00- Ko eeeee 808 555-5555 One Microsoft Way Redmond CA 98005 False
1002
000-
00- John Capsher 808 555-5555 weeeeeee C-town TX 98005 False
1003
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1004
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1005
000-
00- Rew John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1008
000-
00- Doe2 John Black 808 555-5555 One Microsoft Way Redmond CA 98005 True
1110
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
00- Cox Nobbie 123 456-7676 One Nobby way hey Nobbieville MI 99999 True
1112
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1116
000-
00- Public Joe 123-445-3333 One Microsoft Way Redmond CA 98005 False
1119
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1176
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
000-
00- Arthur Weng 808 555-5555 One Microsoft Way Redmond OR 98005 False
1233
000-
00- Hanzitest Hansen 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
00- Byoungho Park 808 555-5555 One Microsoft Way Redmond CA 98005 False
1237
000-
00- Doe2Doe Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
1245
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
1255
000-
00- fred fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
1258
000-
00- Long HeeHaaw 808 555-5342 Hard Way Purple Head CA 98005 False
1324
000-
00- Tian Leo 777-777-7777 One Microsoft Way Redmond UT 98005 True
1394
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1500
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1602
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1700
000-
00- ZZZZZZ ZZZZZZ 808 555-5555 One Microsoft Way Redmond UT 98005 False
1972
000-
00- Doe Zhang 808 555-5555 One Microsoft Way Redmond CA 98005 False
1973
000-
00- Brown Christian 3000 0000 Tha knnkl Redmondnklkn CA 98005 False
1984
000-
00- Pdfdsf Laudfds 808 555-5555 23, rue de Rans Fraisans CA 39700 False
1999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2121
000-
00- Kokulan Ratnasngi 808 555-5555 One Microsoft Way Redmond CA 98005 False
2154
000-
00- Doe John One Microsoft Way Redmond CA 98005 False
2222
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
000-
00- zzzzzzzzzzzzzzz John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2274
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2323
000-
00- car Kara 808 555-5555 One Microsoft Way Redmond CA 98005 False
2324
000-
00- Doe Per 808 555-5559 One Microsoft Way Redmond CA 98009 True
2555
000-
00- Vladovsky John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2678
000-
00- Beccar Varela Marcos 011 772-1839 One Microsoft Way Buenos Aires KS 14263 False
2728
000-
00- 3232 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2929
000-
00- Devan Divine 717-000-0000 100 Divine Devan Ave. Cedar Crest CA 17005 True
3070
000-
00- Tallada Pau 808 555-5555 Petit IPC PC 98005 True
3071
000-
00- Doeddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3243
000-
00- dddd John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
000-
00- wowza wow 808 555-5555 here Redmond CA 98005 True
3322
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
000-
00- b abeer 808 555-5555 mof Redmond CA 98005 False
3635
000-
00- Willie Slick 808 555-5555 One Microsoft Way Redmond IN 98005 False
3985
000-
00- jain rajni(My Dolly) 808 555-5555 One Microsoft Way Redmond CA 98005 False
4000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4001
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
4005
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4200
000-
00- Uplny Jebo z Lesa 123 435-4356 Smetiar 32 Bratislava CA 81000 False
4325
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4344
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4345
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4352
000-
00- Doe Jack&Jill 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
000-
00- Ericson Sven-Gøran 666 444-3333 1 Wembley Way London KS 98005 True
4544
000-
00- Reynolds Jim 808 555-5555 One Oracle Way Euston CA 98005 True
4545
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4546
000-
00- Baggosdcsdfsdf Juju 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
000-
00- Mama Yo 808 555-5555 One Microsoft Way Redmond UT 98005 False
4959
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4999
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5000
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
00- Doe Cret 808 555-5555 One Microsoft Way Redmond CA 98005 True
6512
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6542
000-
00- Man Monkey 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
000-
00- Peters sdafgsdagdasg 808 555-5555 One Microsoft Way Redmond CA 98005 False
6544
000-
00- Bauers Angies 808 555-5555 One Microsoft Way Redmond CA 98005 False
6548
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6564
000-
00- XXXXX XXXXX 808 555-5555 One Microsoft Way Redmond CA 98005 False
6578
000-
00- Hi Hi 805 222 222 Hello Redmond KS 98005 False
6600
000-
00- Rige John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6615
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6656
000-
00- Doexs' Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
000-
00- Doe Blake 808 555-5555 One Microsoft Way Redmond MD 98005 False
6676
000-
00- Chaba Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
6969
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6999
000-
00- R Kim 808 555-7474 One Microsoft Way Redmond MI 98005 False
7474
000-
00- Doe5 John5 808 555-5555 One Microsoft Way Redmond CA 98005 True
7532
000-
00- abab baba 808 555-5555 asdfasdfs Redmond IN 98005 False
7676
000-
00- Tester Beta 555 555-5555 By The River Toborville TN 07734 False
7734
000-
00- c dgfdgdgt 808 555-5555 One Microsoft Way Redmond KS 98005 False
7777
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7858
000-
00- Doe111 John1111 111 555-5555 111111 1111 IN 11111 False
8524
000-
00- dfghdfgh dfghdfgh dfghdfgh One Microsoft Way Redmond CA 98005 True
8528
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8550
000-
00- tekinn cih 808 555-5555 One Microsoft Way Redmond KS 98005 False
8564
000-
00- Tester Theo 808 555-5555 One Microsoft Way Redmond CA 98005 False
8756
000-
00- jay jjj 808 555-5555 One Microsoft Way Redmond CA 98005 False
8765
000-
00- Tilla Billa 808 555-5555 One Microsoft Way Redmond CA 98005 False
8884
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8976
000-
00- Meay Ohii 956 268-7988 Gere •• MD 98953 True
8999
000-
00- Lin F.J. 808 555-5555 One Microsoft Way Redmond MI 98005 False
9000
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9090
000-
00- Doe2 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9111
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9123
000-
00- Meoff Jack 808 999-2022 Hey Now Redmond CA 98005 False
9191
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9229
000-
00- KKKKKKKK KKKKKKKK 808 555-5555 One Microsoft Way Redmond CA 98005 True
9281
000-
00- pippobhjbjh ddrtdtrdtrdtrdrtd 808 555-5555 One Microsoft Way Redmond CA 98005 False
9568
000-
00- Doeuww Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9751
000-
00- Testing Insert 808 555-5555 555 Test St. Redmond IN 98005 True
9874
000-
00- sss33 John 808 922-8827 Way 322 CA 98005 False
9878
000-
00- Ivan Ivanov 808 555-5555 One Microsoft Way Redmond CA 98005 False
9900
000-
00- pasupuleti lavanya 808 555-5553 One Microsoft Way Redmond IN 98005 False
9902
000-
00- Doer Jonathan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9909
000-
00- asasasasasas Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9926
000-
00- Makoto Ishida 808 922877 One Microsoft Way Redmond CA 98005 False
9932
000-
00- Mike This is greate! 808 922877 Honolulu HI CA 98005 False
9933
000-
00- Gavnov Ivan 858 555-5555 Two Macrohard No-Way Pinkmond CA 92019 True
9944
000-
00- Gonna Be Die'n Osama 808 555-5555 Cave 86 Effenstan CA 86868 True
9956
000-
00- Doe John 808 555-5555 One Microsoft Way Redmon CA 98005 False
9990
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
000-
00- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
9993
000-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
01- Yu Kevin 780 987-8611 No Microsoft Way Redmond CA 98005 True
0000
000-
01- aydemir bulent 542 250-6034 www.101nokta.com •stanbul TN 80286 False
0001
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
000-
01- Cai John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1222
000-
01- Pump Bilge 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
01- Pienescu Bogdan 808 555-5555 One Microsoft Way Bucuresti se 98005 False
1974
000-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2000
000-
01- ddd Bon Bon 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
000-
01- ALLAN BALLAN 808 555-5555 One Microsoft Way Redmond CA 98005 True
9999
000-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
05- Doewq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
07- Boop Betty 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
08- Doe Johnyuyu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Lon Bu 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
09- Mike Lazius 808 555-5555 One Microsoft Way Redmond CA 98005 True
9834
000-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
10- Bwen Gwendon 123 Testing Kansas KS 10000 False
0009
000-
10- los hji 808 555-5555 One Microsoft Way Redmond CA 98005 False
1546
000-
10- qwq John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
000-
11- aaaaa John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
11- Doery John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0010
000-
11- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0011
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0450
000-
11- Hi! Arash 808 555-5555 Iran CA 98005 False
1111
000-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
11- Dwarf Dopy 503 123-8787 Bob way Greenland UT 97321 True
1299
000-
11- Hi How 808 555-5555 Good Redmond IN 98005 False
4444
000-
12- Doe qw 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
12- Doe John 808 555-5555 CA 98005 False
1111
000-
15- Doe John 808 555-5555 One Microsoft Way CA 98005 True
9999
000-
20- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
20- Bond James 808 555-5555 1 Octopussy Street Redmond CA 98005 True
0007
000-
20- Smith Fred 808 555-5555 One Microsoft Way Redmond CA 98005 False
0543
000-
21- 324 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
21- Mustermann Max 808 555-1111 One Microsoft Way Redmond KS 98005 True
9523
000-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
22- One Microsoft Way Redmond CA 98005 False
2222
000-
25- Le Hanh 808 555-5555 One Microsoft Way Redmond CA 98005 False
4256
000-
26- Bates Ron 808 555-5555 One Microsoft Way Redmond CA 98005 False
2626
000-
28- Espa Alfonso 987 654-3210 One Microsoft Way Redmond • UT 54321 False
1000
000-
44- Doen John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
44- Doe asdfasdfasdf 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
000-
44- Narayanankutty Vakkalathu 333 555-5555 A-Way from home Kerala, India IN 98005 False
6666
000-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
55- blah John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
000-
55- Dale Sides 808 555-5555 One Microsoft Way Redmond CA 98005 False
4239
000-
65- Dover Ben 808 555-5555 One Microsoft Way Redmond MI 98005 True
4321
000-
66- Wilson Bucky 808 555-5555 123 AnyRoad SomeWhere OR 98005 True
0000
000-
66- Doe Jeff 800-445-4545 One Microsoft Way Redmond CA 98005 True
1234
000-
69- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0069
000-
76- Söderlund 6587675 000 786-1243 yuoiu yoiuyi CA 65432 False
1243
000-
77- Lee fdsfdsfds 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
77- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
000-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
000-
78- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
000-
86- Deadman Ima 808 555-5555 Bin Lyin Low Lair 29 UT 86868 False
0000
000-
88- Onur gumus 808 555-5555 One Microsoft Way Redmond KS 98005 False
0000
000-
88- Doe Cris 808 555-5555 One Microsoft Way Redmond IN 98005 False
0654
000-
88- Rumsfeld Donald 808 555-5555 White House Washington DC IN 98005 True
1234
000-
90- Dupont Maurice 808 555-5555 rue du pont merac TN 98005 True
0012
000-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0098
000-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
000-
99- Olsson Christer 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
000-
99- kamlakar madhavi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
000-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0038
000-
99- 2222222 John1111 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
000-
99- Doe1 John2 808 555-5555 One Microsoft Way Redmond KS 98005 True
8889
000-
99- Peters Andrew 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
001-
00- Doe Allian 808 555-5555 One Microsoft Way Redmond IN 98001 True
0000
001-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
00- Michael Jordan 800 DIV-ORCE NO Way choongju CA 98005 False
0021
001-
00- harvey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0125
001-
00- Doe2 John2 808 555-5555 One Microsoft Way2 Redmond2 IN 98005 True
1000
001-
00- Wanker John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4321
001-
00- Bin Laden Osama 1-800-DIG-ME One Cold Cave Kandehar MD 98005 True
4322
001-
01- Bengal John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
001-
01- a dob dob rob 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
001-
01- sejeong Lee 808 555-5555 One Microsoft Way choongju CA 98005 False
0011
001-
01- Hunt Mike 800 328-8862 One Bad Chick Hosebag CA 06969 False
4323
001-
02- xian Lee 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
001-
02- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2223
001-
10- Doed sd 808 555-5555 One Microsoft Way Redmond IN 98005 False
0100
001-
61- Bengal Benoit 808 555-5555 Salut Redmond CA 98005 False
0000
001-
62- Bengal Benoit 808 555-5555 Vive la France Paris CA 98005 True
0000
001-
99- Ashley Alex 808 555-5555 One Microsoft Way Redmond MD 98005 False
0000
004-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
005-
00- Sibal Pavan 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
006-
88- George B. 440 123-2345 One Middle Road Elyria OR 55505 False
6543
007-
00- S Rams 808 555-5555 great Indian Bangalore IN 55555 False
7007
007-
01- Bellot Demis 808 555-5555 The Microsoft Way Redmond MI 98005 True
0070
007-
12- Gulliksen Paul-Sverre 808 555-5555 One Microsoft Way Redmond TN 98005 False
0050
009-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 True
1000
010-
00- Qwerty Asdf 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
010-
00- Jones Ginger 808 555-5555 One Microsoft Way Redmond MD 98005 False
6666
010-
01- Mister Jalfrezi 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
010-
01- Ryan John 808 555-5555 8 Denmark St Redmond CA 98005 False
9999
010-
10- Hammet Dashell 808 555-4444 Far away from Here KS 98005 False
1010
010-
20- Breiling Noel 925 287 1513 One Microsoft Way Redmond CA 98005 False
0030
010-
60- Marshall Vladovsky 808 555-5555 One Microsoft Way Redmond CA 98005 False
7224
011-
00- Velasquez Andrea 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
011-
00- DoeD John 808 555-5555 One Microsoft Wa0 Redmond CA 98005 False
0009
011-
00- Valdez Carina 808 555-5555 One Microsoft Way Redmond MD 98005 True
1111
011-
01- Doe Jo 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
011-
10- Doe bob nunya Austin TN 98005 False
0101
011-
11- Men Love 808 555-1111 One Microsoft Way Redmond MI 98005 True
1010
011-
11- •• J 808 555-5555 One Microsoft Way •• IN 98005 False
9779
011-
11- •• J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9889
011-
11- D J 808 555-5555 One Microsoft Way Redmond IN 98005 False
9999
012-
03- X Mr. 000-111-2222 One Microsoft Way Redmond CA 98005 False
0456
012-
34- Kaffenberger Albert 415-292-7243 One Microsoft Way Redmond CA 98005 True
5678
017-
01- Butt Sumair 808 555-5555 One Microsoft Way LA CA 98005 True
0056
017-
11- ddd fff 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
020-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
022-
00- sac sss 808 555-5555 One Microsoft Way Redmond CA 98005 False
0004
022-
10- sac sss1 808 555-5555 One Microsoft Way Redmond KS 98005 False
0004
023-
00- luvin wookie 808 555-5555 123 Tatoine Redmond CA 98005 False
0000
040-
00- boccara ilanit 808 555-5555 One Microsoft Way Redmond CA 98005 True
0040
042-
42- Thobbe Rom 808 555-5555 One Microsoft Way Redmond UT 98005 False
0042
043-
85- Bingo Boy 018-424-4113 No Way Atlantis KS 38009 True
8411
050-
00- ddddd ccccc 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
050-
06- abc John 55 Germany Detmold CA 32760 False
0000
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
7474
056-
00- Rudy Raul 808 555-5555 the house on the hill anytown UT 98005 True
9999
056-
99- Rudy ^^^^^^^^^^^^^^ 808 555-5555 the house on the hill anytown UT 98005 True
9999
060-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0088
065-
00- Lee Young 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
01- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
065-
02- leee youngg 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
070-
19- Pedersen Brian 12 23 23 23 Rådhuspladsen 2 Højbjerg DK 82700 True
0000
089-
70- asdffgdffghfgh wdrxfgghfgnvvbn 949578-40684 werwsdffghtyutyihjkjklioo ererererererererer MD 98646 True
5056
090-
00- Smith Steve 808 555-5555 One Microsoft Way Redmond CA 98005 True
1111
090-
04- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6543
090-
09- ABCD DCBA 808 555-5555 One Microsoft Way Redmond KS 11111 False
0909
090-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0990
099-
00- Toe N Feet Slap 808 555-5555 No Way Deadmond wa 98005 False
9999
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9099
099-
99- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
9999
100-
00- Doe2 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
00- Doe3 Jack 808 555-5555 One Microsoft Way Redmond IN 98005 True
0001
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0002
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
100-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0034
100-
00- Doe John 808 555-5555 One Microsoft Way MI 98005 True
0098
100-
Ribeiro
00- Danilo 111 222-3333 My Address My City KS 09110 False
Gianechini
0666
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond3 CA 98005 False
1000
100-
00- tt John 808 555-5555 One Microsoft Way Redmond UT 98005 True
1024
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
100-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
100-
02- lillqvist dani 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
100-
10- Yupid Es 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
10- Doe John 808 555-5555 One Microsoft Way Redmond MI 98005 True
0001
100-
10- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
100-
20- Hotzenplotz Räuber 0815 Waldweg 13 Spessart City TN 54321 False
0300
100-
20- Hotzenplotz Räuber 0815 Umlaute äöüÄÖÜß Spessart City TN 54321 False
0301
100-
34- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0049
100-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
50- zimmdude John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
100-
55- XXX Mattia 808 555-5555 One Microsoft Way Trento,Italy CA 98005 False
0000
100-
99- Doe 999 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
100-
99- Shivakumar Subramaniam 042 952-450 india coimbatore TN 63840 True
0098
101-
01- Sinatra Frank 808 555-5555 One My Way Or_the_Highway CA 98005 True
0101
101-
01- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1090
101-
11- gupta puvvada 91-040-79901 24-237, MarutiNagar Secunderabad, AP IN 50001 False
1010
101-
11- Hurpskman Barles 303 555-5555 One Microsoft Way Redmond KS 98005 True
1111
102-
25- •••••• •••••••••• 991 040-7990 ••••••••• ••••• CA 11111 False
1254
110-
00- Janey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
110-
10- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1233
110-
98- Doe John 808 555-5555 One Microsoft Way Redmond MD 98005 True
0000
110-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
111-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
0034
111-
00- Otero Javi 808 555-5555 Prueba Redmond CA 98005 False
0069
111-
00- Ola Nordmann 808 555-5555 One Microsoft Way Redmond CA 98005 False
0300
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
00- Gary Preece 222-222-2222 One Microsoft Way Redmond CA 98005 True
9999
111-
01- Lam John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
11- kumar1 vasanth1 777-999-9456 II floor nelson towers Zurich KS 94010 False
0123
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1000
111-
11- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
111-
11- Ansari Najmul 808 555-5555 Aliganj Lucknow OR 22602 False
1112
111-
11- hagman John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1119
111-
11- Hasan Atif 111-222-3333 1574 Irvine Center Drive Irvine CA 92782 False
1123
111-
11- MURAATTTTT John 808 555-5555 One Microsoft Way Redmond KS 98005 False
1234
111-
11- Lohan Harendra 808 555-5555 One Microsoft Way Rochester CA 98005 False
2222
111-
11- Lohan Harendra 2121212 One Microsoft Way Rochester CA 98005 False
2223
111-
11- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2333
111-
11- Johnson Tom 123-123-1234 Down My Street Da Burg PA 23462 False
7892
111-
11- Moreland Richard 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
111-
11- kim jazi 555 555-1212 One Microsoft Way Redmond CA 98005 False
9999
111-
12- •ugugug jhjklhjklgjkgkj 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
111-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
13- Wallace Gromit 808 000-1111 One Microsoft Way Redmond CA 98005 True
1234
111-
22- Walla Peter 808 555-5555 One Microsoft Way Graz CA 98005 False
1111
111-
22- Smith Emm 701 555-5555 One Microsoft Way Redmond CA 90210 False
1155
111-
22- Wallace Anna 800 333-4567 One Microsoft Way Redmond TN 98005 False
1234
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3331
111-
22- Doe Jack 808 555-5555 Albert Austin OR 98005 False
3333
111-
22- Paulo Pereira 555 555-5555 Rua Tal nº 888 Guaracity CA 12345 True
3335
111-
22- Newborn Pictures 207 761 0110 http://www.newbornpix.com Portland OR 04101 True
3345
111-
22- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4444
111-
22- D D 808 555-5555 One Microsoft Way Redmond CA 98005 False
5555
111-
24- asdfadsf asdfadsf 808 555-5555 One Microsoft Way Redmond CA 98005 False
3434
111-
43- DoeQQQ Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0454
111-
50- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- gggg John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
111-
99- Bob John 808 555-5555 One Microsoft Way Redmond CA 98005 True
1234
111-
99- McLaren Bruce 666-666-0915 5 Davonshire Drive Pittsburgh CA 15238 True
9999
112-
23- Deere John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9783
112-
23- Plumb Adam 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
112-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
120-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
120-
00- Doel John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
120-
08- Busta Rime 808 555-5555 One No Way San Man KS 98005 False
0098
121-
00- Xiao Be 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
121-
10- Doe Vincent 808 555-5555 One Microsoft Way Redmond KS 98005 False
1989
121-
12- Eperez eperez 448410042 Abeto SLP CA 78130 False
1212
121-
12- TESTRO Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
3214
121-
22- Does Johns 808 555-555 One Microsoft Way Redmond CA 98005 False
1133
121-
80- Does John23 2 One Microsoft Way1 Redmond CA 98005 True
5753
122-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
122-
22- test John 123 123-1233 One Microsoft Way Redmond CA 98005 False
1234
122-
32- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
00- pippo hjbh bhjbhj bhjb jhbhj CA 98005 False
0034
123-
00- Joe Smith Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
00- Egil Rød 808 555-5555 One Microsoft Way Redmond CA 98005 False
1212
123-
00- Bicalho Elton 808 555-5555 Rua tal Cuiabá MD 98005 True
1234
123-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5432
123-
06- van Woudenberg Peter 808 555-5555 One Microsoft Way Redmond IN 98005 False
4000
123-
11- France LeoAAAA 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
123-
11- Kumar Dilip 808 555-5555 One Microsoft Way Redmond OR 45220 False
2000
123-
12- Kwoang-Sik Min 016 327-5555 One Microsoft Way Seoul CA 98045 False
0915
123-
12- Doe1 Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
123-
12- Joe Blow 904-555-1212 One Microsoft Way Redmond CA 98005 True
1564
123-
12- Mike Nash 808 555-5555 One Microsoft Way San Francisco CA 94105 True
2345
123-
12- Deleu Regine 092 722-3100 Guldensporenpark Merelbeke OR 98005 True
3625
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
123-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
123-
16- leo Kats 816 555-5555 11430Cross Olathe KS 66222 False
7890
123-
22- Gugus Gaga 808 555-5555 One Microsoft Way Redmond OR 98005 True
1234
123-
33- Doe Jack 808 555-5556 2 Microsoft Way Redmond CA 98005 False
3243
123-
33- Jain Rajesh 768-098-7868 1, Wood Avenue Iselin CA 98005 True
3456
123-
44- isr ww 999-522-5562 One Microsoft Way Redmond OR 98005 True
4455
123-
44- Doe3 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
45- viswanath jawalakr 808-555-4444 One Microsoft Way Redmond CA 34534 False
3678
123-
45- Kamala Tasha 919 555-1243 2 Black Dog Way Kary TN 37205 True
6789
123-
45- dosey do John 808 555-5555 One Microsoft Way ROBERT CA 98005 False
6798
123-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7890
123-
45- Engineer John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
123-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
123-
55- Rex Noah 808 555-5555 One Microsoft Way Redmond CA 98005 False
0007
123-
55- 4 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0008
123-
55- Thomson Scott 654 654-6544 116 Elgin Drive Brampton OR 09833 True
7890
123-
59- floyd pittman 808 555-5555 One Microsoft Way Redmond CA 33055 False
6789
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
123-
64- KKKKK PPPPPP 808 555-5555 One Microsoft Way Redmond CA 98005 True
0001
123-
89- Kevin Satterthwaite 808 555-5555 12345-12 St Edmonton CA 98005 False
9874
123-
90- Dot Not Yet 808 555-5555 Microsoft Cul-de-Sac Paris CA 98005 True
0000
123-
98- Max Tester 01 12234444 Test Sydney KS 98005 True
6655
123-
99- Robert Taylor 808 555-5555 123 Murdock St. Marietta CA 98005 False
9999
127-
85- Haulund Jens 808 555-5555 One Microsoft Way Redmond CA 98005 False
2211
131-
31- Olson John 808 555-5555 One Microsoft Way Redmond OR 11245 True
3131
140-
09- Irwan azam 808 555-5555 One Microsoft Way Redmond CA 98005 False
0567
142-
25- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3698
145-
44- Doe Dil 808 555-6666 One Microsoft Way Redmond CA 98005 False
7914
151-
15- Doe 808 555-5555 One Microsoft Way Redmond CA 98005 False
1515
151-
15- 808 555-5555 One Microsoft Way Redmond CA 98005 False
1516
151-
15- One Microsoft Way Redmond CA 98005 True
1517
151-
15- Mars Þ 808 555-5555 One Microsoft Way Redmond CA 98005 False
1518
154-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8798
168-
05- P P 808 555-5555 One Microsoft Way Redmond CA 98005 False
5911
172-
32- White Johnson 408 496-7223 10932 Bigge Rd. Menlo Park CA 94025 True
1176
190-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
190-
00- A.P Arun 808 555-5555 4/51 thekkuveedu lane calicut CA 98005 False
0006
200-
00- Dobbs Bob 808 555-5555 Church of Subgenious Slackville CA 98005 True
0000
212-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4567
213-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 True
0002
213-
46- Green Marjorie 415 986-7020 309 63rd St. #411 Oakland CA 94618 True
8915
220-
00- Doe John 808 555-5555 One Microsoft Way Redmond OR 98005 False
0000
222-
00- XYZ ABC 123-456-5000 God's way Redmond CA 98005 False
1243
222-
12- Avendaño Cesar 907 234-5611 Cra 333 # 111 Medellin MD 11111 True
1234
222-
12- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3232
222-
22- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
2222
222-
22- test1 test2 416 422-0138 testing address 1 Toronto OR 91111 True
2226
222-
22- a f 333 434-3334 Cleveland IN 34344 False
3322
222-
22- a f 333 434-3334 sadfds Cleveland IN 34344 False
3332
222-
88- ravi chand 808 555-5555 One Microsoft Way Redmond CA 98005 False
2234
224-
45- Pest Bug 616-659-5986 Peach Tree Rd. Kalamazoo MI 69582 True
9875
230-
00- Doesett Johnathan 804 555-5544 One Microsoft Ways gulatan IN 68005 False
0300
232-
56- Sexy Glamorous 808 555-5555 Play Boy Mansion California CA 98005 True
5150
233-
44- Alexandre Jorge 555 234-4456 Bombarral Bombarral KS 25401 False
5544
234-
34- Doe John 808 555-5555 One Microsoft Way Redmond KS 98005 False
3444
234-
99- qqqq vvvv 808 777-4444 P.O. Box 247 seoul MD 98555 True
9999
238-
95- Carson Cheryl 415 548-7723 589 Darwin Ln. Berkeley CA 94705 True
7766
239-
95- Someone aaaaaaa 808 555-5555 One Microsoft Way Redmond CA 98005 False
7766
240-
00- Greenwood Seb 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
254-
85- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0500
254-
85- One Microsoft Way Redmond CA 98005 False
8700
267-
41- O'Leary Michael 408 286-2428 22 Cleveland Av. #14 San Jose KS 95128 False
2394
269-
54- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0526
274-
80- HI Dean 415 834-2919 5420 College Av. Oakland CA 94609 False
9391
300-
00- Doe444 John22 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
302-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
321-
18- xhan2000 John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0231
321-
32- Smith Joe 808 555-1234 123 First St. Baltimore MD 98005 True
4321
321-
54- Carboxy Jack +31497123456 Far away The Netherlands Br 98005 False
0987
323-
32- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3233
323-
66- John Doe 666 999-5555 123 Sesame San Diego CA 44444 False
5432
324-
45- Doet John 808 555-5555 One Microsoft Way Redmond CA 98005 False
4544
327-
00- Balun Delama 555 555-5555 Hell's gate Road Planet Moon MI 11223 True
2546
332-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- LeBlanc John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
333-
00- Simon Simple 808 555-5555 One Microsoft Way Redmond IN 98003 False
0001
333-
00- something John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
333-
22- kebeci Güven 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
333-
30- Robinson John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
31- Lala John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3000
333-
33- kishore krishna 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
333-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
333-
33- Çako•lu Mehmet 808 555-5555 Thin green mile istanbul MD 34400 False
3399
341-
22- hey Meander 913 843-0462 10 Mississippi Dr. Lawrence KS 66044 True
1782
343-
33- Tang Putti 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
345-
67- xxx John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
348-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3874
355-
76- Jim Rieck 8476959476 One Microsoft Way Redmond CA 98005 False
5317
357-
27- Doe lklll 808 555-5555 One Microsoft Way ond IN 98005 True
9870
357-
27- Doe lklll 312-555-5555 One Microsoft Way ond IN 98005 True
9873
366-
26- LaForge Geordi 1-800-STA-RS One Microsoft Way Franklin TN 37067 True
8404
378-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8737
394-
00- Lazius Mike 808 555-5555 One Microsoft Way Redmond UT 98005 True
9374
395-
26- Capsher John 987 654-3210 1212 Loop 12 Dallas OR 98005 False
2222
399-
99- pippi calzelunghe 808 555-5555 One Microsoft Way San francisco CA 14725 False
3999
400-
00- Yo YoYo 808 555-5555 One Microsoft Way Redmond CA 98005 False
0077
409-
56- john Abraham 415 658-9932 6223 Bateman St. Berkeley CA 94705 False
7008
427-
17- DullnDumb Ann 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
2319
432-
00- Anka Kalle 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
440-
90- Pegg Jeffrey 918 361-7344 2448 E 81st Tulsa OR 74137 True
7785
443-
00- Beee WHO 22222222 2223 dfdsf Redmonds KS 98004 True
0001
443-
23- Hard Rock 696 969-6969 One Stiff Way peters town Co 69696 False
5543
444-
44- Tomaylla Juan 808 555-5555 24 Blue Mont Av. Miami CA 98005 True
4444
445-
00- Hunter John 808 555-5555 One MS Way Redmond CA 98005 True
0055
446-
44- Channe Jaishri 111 111-1111 Park Chambers, Regopark Beverly IN 99345 True
4447
454-
21- V. Will Rockyou 808 555-5555 D. EBERLE BIRKENFELD D 00000 True
3478
454-
21- Smith John 808 555-5555 One Microsoft Way Redmond UT 98005 True
8465
456-
99- DoeEx JohnEx 808 555-5555 One Microsoft Way Redmond CA 98005 True
0000
472-
27- Gringlesby Burt 707 938-6445 PO Box 792 Covelo CA 95428 True
2349
486-
29- Locksley Charlene 415 585-4620 18 Broadway Av. San Francisco CA 94130 True
1786
500-
00- Subram John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0092
527-
72- Greene Morningstaruuuu 615 297-2723 22 Graybar House Rd. Nashville TN 37215 False
3246
555-
00- Does Johns 808 555-5555 One Microsoft Way Redmond CA 98005 True
5555
555-
11- Bin Laden Osama (000) 000-00 Cave 23 Tora Bora UT 00000 False
2222
555-
12- SuperDog Yahoo 999-999-9999 One Microsoft Way Redmond CA 98005 False
5555
555-
44- yo ne 808 555-6666 dfdssdf sdfsdffdsd KS 98005 True
3210
555-
44- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5567
555-
55- Daz Dea 808 555-5555 One Microsoft Way Redmond CA 98005 False
5554
555-
55- Sheds Two 808 555-5555 One Microsoft Way Copenhagen CA 98005 False
5555
555-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5559
555-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
555-
66- Doe Pete 808 555-5555 happy days Redmond CA 98005 False
2222
555-
98- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9855
564-
00- Doe Vasa 808 555-5555 One Microsoft Way Belgrade CA 98005 False
0001
585-
88- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9852
600-
00- Ternopolsky Andrew 808 555-5555 One Microsoft Way Toronto CA 98005 True
0001
625-
00- Fernandez Katrina 808 555-5555 1550 Iron Point Rd Folsom CA 95630 False
0000
634-
23- Yu Communist Lee China 808 555-5555 One Microsoft Way Redmond UT 98005 True
7895
648-
92- Blotchet-Halls Reginald 503 745-6402 55 Hillsdale Bl. Corvallis OR 97330 True
1872
664-
21- Kinaska Zel Rojo 885 656 5525 6638 s chestnut bakersfield TN 99852 False
1125
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
666-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0088
666-
00- al-Zawahiri Ayman 666 666-6666 Prime Evil House Hell TN 66666 True
0666
666-
55- Doe Jack 808 555-5555 One Microsoft Way CA 98005 False
8888
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6665
666-
66- Foot lame-0 204 999-9999 Freq Station Zero 38DD-34-38 OR 99999 True
6666
666-
66- Dingle Barry 214-748-1414 1313 Mockingbird Ln. Dallas TN 77777 True
6969
666-
66- LIN John 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
666-
66- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
666-
99- Dope John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0666
666-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5655
672-
71- Yokomoto Akiko 415 935-4228 3 Silver Ct. Walnut Creek CA 94595 True
3249
678-
00- jane young 025-34324324 nanjing •• CA 98005 False
9876
696-
69- Bader Nathan 808 555-5555 Enviance San Diego CA 92009 True
6969
700-
00- John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1234
700-
00- Doesdfad John 808 555-5555 One Microsoft Way Redmond MD 98005 False
1235
712-
45- del Castillo Innes 615 996-8275 2286 Cram Pl. #86 Ann Arbor MI 48105 True
1867
722-
51- DeFrance Michel 219 547-9982 3 Balding Pl. Gary IN 46403 True
5454
724-
5420 Telegraph Av. sdsdfs
08- Stringer Dirk 415 843-2991 Oakland CA 94609 False
ds d sdf sdf s
9931
724-
80- MacFeather Stearns 415 354-7128 44 Upland Hts. Oakland CA 94612 True
9391
736-
83- Blah Blah Blah Zeke 808 555-5555 One Microsoft Way Redmond CA 98005 False
3231
745-
65- Dane Jackson 888-563-9865 25 Wetworks Circle Los Angeles CA 90025 True
6578
756-
30- Karsen Livia 415 534-9219 5720 McAuley St. Oakland CA 94609 True
7391
758-
00- Ongenae Veerle oeps Straat Stad UT 12369 False
0002
758-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
764-
98- Kuk Mr 808 555-5555 One Microsoft Way Redmond KS 98005 False
2345
770-
00- Doe John 808 555-0055 One Microsoft Way CA 98005 False
0000
777-
00- olivier Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
777-
22- I.P. Freely 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
777-
55- Graham Innes 0123456789 One Microsoft Way Redmond CA 98005 True
1234
777-
77- Nair Shalini 686 555-5555 SGI Bombay Mp 98005 False
7777
777-
99- Huba Haba 555-555-5555 known Street Mexico CA 03100 False
7777
787-
00- hhh John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0999
789-
12- Jeff Annequin 808 555-5555 One Microsoft Way Paris OR 98005 False
4567
800-
00- 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
800-
00- Doe1 Jimmy1 808 555-2131 Ate Microsoft Why1 Tigard1 UT 98001 False
0008
800-
00- gdgdgd gdgdg 522 555-7777 gerrelll erg IN 78569 True
8888
800-
00- Park Hyung 808 555-5555 One Microsoft Way Redmond CA 98005 False
8889
800-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
807-
91- Panteley Sylvia 301 946-8853 1956 Arlington Pl. Rockville MD 20853 True
6654
808-
11- McEwan Robert 808 123-8888 One My Way LA CA 98052 True
8088
809-
00- V•l Kokot 808 555-5555 One Microsoft Way Redmond IN 98005 False
0111
825-
43- SMITH PAT 808 555-6789 On'e Microsoft Way Redmond CA 98005 False
1234
829-
45- Smith Mike 808 555-5555 One Microsoft Way Redmond CA 98005 False
6587
846-
92- Hunter Sheryl 415 836-7128 3410 Blonde St. Palo Alto CA 94301 True
7186
847-
57- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1348
847-
57- 'Tim Powers' 808 555-5555 One Microsoft Way Annapolis MD 98005 False
1349
888-
00- Wyckoff Jason 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
888-
00- Charbonneau John 808 878-8646 One Microsoft Way Redmond CA 98005 True
8877
888-
00- gdgdgd gdgdg 522 555-7777 erg IN 78569 True
8888
888-
11- Meister Mik 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
26- Harry Horn 808 555-5555 One Microsoft Way Redmond CA 98005 False
7143
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
6666
888-
77- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Zhang Paul 808 555-5555 One Microsoft Way Redmond IN 98005 False
8881
888-
88- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
8888
888-
88- Giuliani Rudolph 808 555-5555 One Microsoft Way Redmond MD 98005 False
8889
888-
88- zzz hhh 800 123-4567 life Redmond CA 98065 True
9999
888-
99- Magosso Fabrizio 9362075 Rua Major Gama New York CA 11111 False
9999
893-
72- McBadden Heather 707 448-4982 301 Putnam Vacaville CA 95688 False
1158
895-
57- Condor Elson 808 555-5555 One Microsoft Way Redmond CA 98005 False
5418
895-
86- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8759
899-
46- Ringer Anne 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 False
2035
899-
89- Mishra Rajib 808 555-5555 One Microsoft Way Redmond CA 98005 True
8989
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
900-
00- Wang Qiang 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond IN 98005 False
0003
900-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
900-
00- a a 808 555-5555 One Microsoft Way Redmond CA 98005 False
8000
900-
90- Maar Doe 808 555-5555 Microsoft (One Way) Hopper UT 98005 True
9000
900-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
901-
90- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
902-
90- Shinde Suhas 808 555-5555 One Microsoft Way Redmond CA 98005 False
0001
908-
00- Gott Karel 808 555-5555 One Microsoft Way Redmond UT 98005 True
0000
909-
99- Wasielewski Steve 808 555-5555 One Microsoft Way Redmond CA 98005 False
3333
912-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0099
928-
23- Kuhn Ben 716 424-8155 123 Nowhere St Corvallis OR 01812 True
1324
953-
99- Injamuri Ephraim 808 555-5555 Bharathi Sadan Bommuru CA 90701 False
0928
978-
89- Saevik Erling Antoni 92929292 Test Test CA 98005 False
8070
980-
00- pppppppppppppp John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
981-
88- Castillo Manuel 808 555-5555 One Microsoft Way Redmond CA 98005 False
9898
987-
00- Saw Alan 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
987-
22- Doe John 818 555-1212 One Microsoft Way Redmond CA 98005 False
3344
987-
65- •••• Johsdfsdfn 808 555-5555 One Microsoft Way Redmond TN 98005 True
4321
987-
87- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9876
988-
00- gdgdgd gfhfghh 522 555-7777 erg IN 78569 True
8888
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
990-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
995-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
01- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
998-
72- Ringer Albert 801 826-0752 67 Seventh Av. Salt Lake City UT 84152 True
3567
999-
00- aaa Jun 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
00- obilic sinisa 808 555-5555 One Microsoft Way Redmond KS 98005 True
0001
999-
00- Doeiuii John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98002 False
0010
999-
00- Doe Jack 808 555-5555 One Microsoft Way Redmond CA 98005 False
0011
999-
00- Rasputen John 808 555-5555 TestStreet Billings MI 45677 False
0987
999-
00- Does Johny 808 555-5559 Two Microsoft Way Redmon IN 98009 True
2222
999-
00- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
8903
999-
00- Cristian Rissone 808 555-5555 One Microsoft Way Rissone CA 98005 False
9999
999-
11- Doe1 John1 808 555-5555 One Microsoft Way Redmond CA 98005 False
0100
999-
11- blow dude 808 555-5555 One Microsoft Way Redmond CA 98005 False
1001
999-
22- DoeXXXXXXXXX John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
22- andi andi 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
23- Wilmotte Philippe 808 555-5555 One Microsoft Way Redmond MI 98005 True
0577
999-
33- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
3245
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1324
999-
45- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9999
999-
55- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
2564
999-
88- S SD 111 234-6545 s s KS 11234 True
7645
999-
88- Dough Johnny 808 555-5555 One Microsoft Way Redmond CA 98005 False
7777
999-
99- Bend Dover 808 555-5555 One Microsoft Way Redmond CA 98005 False
0000
999-
99- Doen Johnson 808 555-5552 One Microsoft Way? Redmond MI 98005 True
0001
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0009
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
0165
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
0191
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1111
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
1112
999-
99- hoyle Jack 808 555-5555 no Microsoft Way new orleans TN 98005 False
1234
999-
99- Kushner Mike (330) 757-43 3 Ms Drive Poland KS 44505 True
3998
999-
99- Doe John 808 555-5555 One Microsoft Way Redmond CA 98005 False
5724
999-
99- monkey John 808 555-5555 One Microsoft Way Redmond KS 98005 False
5758
999-
99- One Microsoft Way Redmond CA 98005 False
5944
999-
99- caruso paskosky 808 555-5555 One Microsoft Way Redmond CA 98005 False
5945
999-
Buenos Aires
99- Mark Lodesones 850 546-5698 Micri CA 98005 True
Argenti
8888
999-
99- chen yin 808 555-5555 test Redmond CA 98005 False
9199
999-
99- Doey \ 808 555-5555 One Microsoft Way Redmond CA 98005 False
9678
999-
99- Ovalson Condom 808 6666-666 One Microsoft Way Redmond CA 98005 False
9910
999-
99- Doesdfsdf Jacksdfsdf fsdfsdfsdfsd One Microsoft Way Redmond CA 98005 False
9911
999-
99- Doe John 808 555-5556 One Microsoft Way Redmond CA 98005 False
9912
999-
99- hayne John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9913
999-
99- Abbott Graham 808 555-5555 Nine Microsoft Way Redmond UT 98005 True
9914
999-
99- Khan Arif 808 555-5555 One Microsoft Way Redmond CA 98005 False
9977
999-
99- yong-bum cha 808 555-5555 One Microsoft Way Redmond CA 98005 False
9988
999-
99- Doey John 808 555-5555 One Microsoft Way Redmond CA 98005 False
9989
999-
99- schenshul schenshul 808 555-5555 ICR Hartford CT 98005 False
9990
999-
99- lep j 808 555-5555 One Microsoft Way Redmond CA 98005 False
9991
999-
1100 east woodfield rd,
99- venzke glenn 847-995-8400 schaumburg IN 60173 True
suite 520
9992
999-
99- myname Bill 02534212345 One Deadbeat lane Redmond CA 98005 False
9993
999-
99- mytest mytest 808 555-5555 One Microsoft Way Ankara CA 98005 False
9994
999-
99- Uplny Harry 123 435-4356 Smetiar 32 Bratislava CA 81000 False
9995
999-
99- akrouk samer 808 555-5555 One Microsoft Way Redmond CA 98005 False
9996
999-
99- Doe Jimmmmm 808 555-5555 One Microsoft Way Redmond CA 98005 False
9997
999-
99- well what 808 555-5555 hello •• CA 98005 False
9998
999-
99- Dennis Bellot 555 555-5555 Timeless Winds Australia IN 98005 False
9999
User:
Authentication Type:
Login Page
Email:
Password:
Persistent Cookie:
Login
Login Page
Email:
Password:
Persistent Cookie:
Login
at
System.Web.Services.Protocols.SoapHeaderHandling.GetHeaderMembers(SoapHeaderCollection
headers, Object target, SoapHeaderMapping[] mappings, SoapHeaderDirection direction,
Boolean client)
at System.Web.Services.Protocols.SoapHttpClientProtocol.BeforeSerialize(WebRequest
request, String methodName, Object[] parameters)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName,
Object[] parameters)
at SoapHeadersVB.HeaderService.SecureMethod() in
D:\temp1\samples\QuickStart\aspplus\samples\services\SoapHeaders\VB\SoapHeaders.vb:line
42
at _ASP.soapheaders_aspx.Page_Load(Object sender, EventArgs e)
SUCCESS: JohnDoe,password
I18N: Encodings
This sample demonstrates using different encodings on the same page. The source for the page itself is stored with
UTF-8 encoding. Internally ASP.NET handles the page as Unicode. By using the ResponseEncoding attribute, ASP.NET
is asked to send the page with UTF-8 encoding.
Dies ist ein deutscher Text. Er demonstriert die Möglichkeit von Umlauten.
効果的㕫ビジフスシーン㕮変化㕫镩応㕧㕕る㕋㕯ã
•伕æ¥-å†…éƒ¨ã•®ãƒ‡ã‚¸ã‚¿ãƒ«ã•«ã‚ˆã‚‹æƒ…å ±ãƒ—ãƒ-セスã
•"デジタル・ナーフス・システム"㕌㕩れ㕠㕑啥全㕧㕂る㕋㕫㕋㕋㕣㕦㕄㕾㕙ã
‚
Welcome
Willkommen
••••
••• ••••••••
2002•2•3• 14:32
(•• ...)
••••••• ••••••••••
2002•2•3• 14:32
(•• ...)
Welcome
Clinton Search
Willkommen
Schröder Suchen
••••
••• ••••••••
2002•2•3• 14:32
(•• ...)
••••••• ••••••••••
2002•2•3• 14:32
(•• ...)
• ••
Welcome !
Choose another language
Clinton Search
Request Details
Application State
Name Value
Cache-
no-cache
Control
Accept application/vnd.fdf, application/vnd.adobe.xfdf, text/html, text/plain, image/gif, image/jpeg, application/pdf
ASP.NET_SessionId=omrtpkqhiqfu4pev10wbrl55;
Cookie preferences1=ForeColor=black&BackColor=beige&LinkColor=blue&FontSize=8pt&FontName=Verdana;
preferences2=ForeColor=black&BackColor=beige&LinkColor=blue&FontSize=8pt&FontName=Verdana
Host samples.gotdotnet.com
Referer http://samples.gotdotnet.com/quickstart/aspplus/doc/tracelogpage.aspx
User-
Mozilla/3.0 (compatible; WebCapture 2.0; Auto; Windows)
Agent
Server Variables
Name Value
HTTP_CACHE_CONTROL:no-cache HTTP_ACCEPT:application/vnd.fdf, application/vnd.adobe.xfdf,
text/html, text/plain, image/gif, image/jpeg, application/pdf
HTTP_COOKIE:ASP.NET_SessionId=omrtpkqhiqfu4pev10wbrl55;
preferences1=ForeColor=black&BackColor=beige&LinkColor=blue&FontSize=8pt&FontName=Verdana;
ALL_HTTP
preferences2=ForeColor=black&BackColor=beige&LinkColor=blue&FontSize=8pt&FontName=Verdana
HTTP_HOST:samples.gotdotnet.com
HTTP_REFERER:http://samples.gotdotnet.com/quickstart/aspplus/doc/tracelogpage.aspx
HTTP_USER_AGENT:Mozilla/3.0 (compatible; WebCapture 2.0; Auto; Windows)
Request Details
Name Value
Cache-
no-cache
Control
Accept application/vnd.fdf, application/vnd.adobe.xfdf, text/html, text/plain, image/gif, image/jpeg, application/pdf
ASP.NET_SessionId=omrtpkqhiqfu4pev10wbrl55;
Cookie preferences1=ForeColor=black&BackColor=beige&LinkColor=blue&FontSize=8pt&FontName=Verdana;
preferences2=ForeColor=black&BackColor=beige&LinkColor=blue&FontSize=8pt&FontName=Verdana
Host samples.gotdotnet.com
Referer http://samples.gotdotnet.com/quickstart/aspplus/doc/tracelogpage.aspx
User-
Mozilla/3.0 (compatible; WebCapture 2.0; Auto; Windows)
Agent
Server Variables
Name Value
Sodium 90mg 0%