diff --git a/apps/assets/forms.py b/apps/assets/forms.py
index 09fcc9a24..aeb7062cb 100644
--- a/apps/assets/forms.py
+++ b/apps/assets/forms.py
@@ -309,4 +309,8 @@ class AssetTagForm(forms.ModelForm):
}
help_texts = {
'name': '* required',
- }
\ No newline at end of file
+ }
+
+
+class FileForm(forms.Form):
+ file = forms.FileField()
\ No newline at end of file
diff --git a/apps/assets/models.py b/apps/assets/models.py
index be54b0286..aa22a2f02 100644
--- a/apps/assets/models.py
+++ b/apps/assets/models.py
@@ -309,12 +309,12 @@ class Asset(models.Model):
cabinet_no = models.CharField(max_length=32, null=True, blank=True, verbose_name=_('Cabinet number'))
cabinet_pos = models.IntegerField(null=True, blank=True, verbose_name=_('Cabinet position'))
number = models.CharField(max_length=32, null=True, blank=True, verbose_name=_('Asset number'))
- status = models.CharField(choices=STATUS_CHOICES, max_length=1, null=True, blank=True,
- default='I', verbose_name=_('Asset status'))
+ status = models.CharField(choices=STATUS_CHOICES, max_length=8, null=True, blank=True,
+ default='In use', verbose_name=_('Asset status'))
type = models.CharField(choices=TYPE_CHOICES, max_length=16, blank=True, null=True,
default='Server', verbose_name=_('Asset type'),)
env = models.CharField(choices=ENV_CHOICES, max_length=8, blank=True, null=True,
- default='P', verbose_name=_('Asset environment'),)
+ default='Prod', verbose_name=_('Asset environment'),)
sn = models.CharField(max_length=128, null=True, blank=True, verbose_name=_('Serial number'))
created_by = models.CharField(max_length=32, null=True, blank=True, verbose_name=_('Created by'))
is_active = models.BooleanField(default=True, verbose_name=_('Is active'))
diff --git a/apps/assets/serializers.py b/apps/assets/serializers.py
index 2bef663b8..7b13606e5 100644
--- a/apps/assets/serializers.py
+++ b/apps/assets/serializers.py
@@ -43,7 +43,6 @@ class AssetSerializer(BulkSerializerMixin, serializers.ModelSerializer):
# system_users = SystemUserSerializer(many=True, read_only=True)
# admin_user = AdminUserSerializer(many=False, read_only=True)
hardware = serializers.SerializerMethodField()
- type_display = serializers.SerializerMethodField()
class Meta(object):
model = Asset
@@ -51,15 +50,16 @@ class AssetSerializer(BulkSerializerMixin, serializers.ModelSerializer):
@staticmethod
def get_hardware(obj):
- return '%s %s %s' % (obj.cpu, obj.memory, obj.disk)
-
- @staticmethod
- def get_type_display(obj):
- if obj.type:
- return obj.type.value
+ if obj.cpu:
+ return '%s %s %s' % (obj.cpu, obj.memory, obj.disk)
else:
return ''
+ def get_field_names(self, declared_fields, info):
+ fields = super(AssetSerializer, self).get_field_names(declared_fields, info)
+ fields.extend(['get_type_display', 'get_env_display'])
+ return fields
+
class AssetGrantedSerializer(serializers.ModelSerializer):
system_users = SystemUserSerializer(many=True, read_only=True)
diff --git a/apps/assets/templates/assets/_asset_import_modal.html b/apps/assets/templates/assets/_asset_import_modal.html
new file mode 100644
index 000000000..72d13f7a8
--- /dev/null
+++ b/apps/assets/templates/assets/_asset_import_modal.html
@@ -0,0 +1,27 @@
+{% extends '_modal.html' %}
+{% load i18n %}
+{% block modal_id %}asset_import_modal{% endblock %}
+{% block modal_title%}{% trans "Import asset" %}{% endblock %}
+{% block modal_body %}
+
{% trans "Download template or use export excel format" %}
+
+
+
+
+
+
+
+
+
+{% endblock %}
+{% block modal_confirm_id %}btn_asset_import{% endblock %}
diff --git a/apps/assets/templates/assets/asset_detail.html b/apps/assets/templates/assets/asset_detail.html
index 22af9acaa..bc3a7b147 100644
--- a/apps/assets/templates/assets/asset_detail.html
+++ b/apps/assets/templates/assets/asset_detail.html
@@ -96,7 +96,7 @@
{% trans 'Asset status' %}: |
- {{ asset.status }} |
+ {{ asset.get_status_display() }} |
{% trans 'Is active' %}: |
diff --git a/apps/assets/templates/assets/asset_list.html b/apps/assets/templates/assets/asset_list.html
index bee1c396d..970f21555 100644
--- a/apps/assets/templates/assets/asset_list.html
+++ b/apps/assets/templates/assets/asset_list.html
@@ -48,7 +48,6 @@
{% block table_container %}
-
@@ -81,6 +80,7 @@
+{% include 'assets/_asset_import_modal.html' %}
{% endblock %}
{% block custom_foot_js %}
@@ -100,7 +100,7 @@
}else{
oDiv.style.display = "none";
}
- }; //onload;
+ } //onload;
$(document).ready(function(){
var options = {
@@ -132,31 +132,51 @@
],
ajax_url: '{% url "api-assets:asset-list" %}',
columns: [{data: "id"}, {data: "hostname" }, {data: "ip" }, {data: "port" },
- {data: "type_display" }, {data: "env"}, {data: "hardware"}, {data: "is_active" },
- {data: "is_active"}, {data: "id" }],
+ {data: "get_type_display" }, {data: "get_env_display"}, {data: "hardware"},
+ {data: "is_active" }, {data: "is_active"}, {data: "id" }],
op_html: $('#actions').html()
};
var table = jumpserver.initDataTable(options);
$('.btn_export').click(function () {
- var assets = [];
- var rows = table.rows('.selected').data();
- $.each(rows, function (index, obj) {
- assets.push(obj.id)
+ var assets = [];
+ var rows = table.rows('.selected').data();
+ $.each(rows, function (index, obj) {
+ assets.push(obj.id)
+ });
+ $.ajax({
+ url: "{% url "assets:asset-export" %}",
+ method: 'POST',
+ data: JSON.stringify({assets_id: assets}),
+ dataType: "json",
+ success: function (data, textStatus) {
+ window.open(data.redirect)
+ },
+ error: function () {
+ toastr.error('Export failed');
+ }
+ })
});
- $.ajax({
- url: "{% url "assets:export-assets-xlsx" %}",
- method: 'POST',
- data: JSON.stringify({users_id: users}),
- dataType: "json",
- success: function (data, textStatus) {
- window.open(data.redirect)
- },
- error: function () {
- toastr.error('Export failed');
+
+ $('#btn_asset_import').click(function() {
+ var $form = $('#fm_asset_import');
+ $form.find('.help-block').remove();
+ function success (data) {
+ if (data.valid === false) {
+ $('', {class: 'help-block text-danger'}).html(data.msg).insertAfter($('#id_users'));
+ } else {
+ $('#id_created').html(data.created_info);
+ $('#id_created_detail').html(data.created.join(', '));
+ $('#id_updated').html(data.updated_info);
+ $('#id_updated_detail').html(data.updated.join(', '));
+ $('#id_failed').html(data.failed_info);
+ $('#id_failed_detail').html(data.failed.join(', '));
+ var $data_table = $('#asset_list_table').DataTable();
+ $data_table.ajax.reload();
}
- })
- });
+ }
+ $form.ajaxSubmit({success: success});
+ })
});
diff --git a/apps/assets/urls/views_urls.py b/apps/assets/urls/views_urls.py
index 7b1f4e1bc..a2b4537a3 100644
--- a/apps/assets/urls/views_urls.py
+++ b/apps/assets/urls/views_urls.py
@@ -9,6 +9,8 @@ urlpatterns = [
url(r'^$', views.AssetListView.as_view(), name='asset-index'),
url(r'^asset/$', views.AssetListView.as_view(), name='asset-list'),
url(r'^asset/create/$', views.AssetCreateView.as_view(), name='asset-create'),
+ url(r'^asset/export/$', views.AssetExportView.as_view(), name='asset-export'),
+ url(r'^asset/import/$', views.BulkImportAssetView.as_view(), name='asset-import'),
url(r'^asset/(?P[0-9]+)/$', views.AssetDetailView.as_view(), name='asset-detail'),
url(r'^asset/(?P[0-9]+)/update/$', views.AssetUpdateView.as_view(), name='asset-update'),
url(r'^asset/(?P[0-9]+)/delete/$', views.AssetDeleteView.as_view(), name='asset-delete'),
diff --git a/apps/assets/views.py b/apps/assets/views.py
index 2ed4b8c98..5f70c0ef5 100644
--- a/apps/assets/views.py
+++ b/apps/assets/views.py
@@ -9,6 +9,7 @@ from openpyxl import load_workbook
from django.utils.translation import ugettext as _
from django.conf import settings
from django.db.models import Q
+from django.db import IntegrityError
from django.views.generic import TemplateView, ListView, View
from django.views.generic.edit import CreateView, DeleteView, FormView, UpdateView
from django.urls import reverse_lazy
@@ -21,10 +22,11 @@ from django.utils.decorators import method_decorator
from django.core.cache import cache
from django.utils import timezone
-from common.utils import int_seq
-from .utils import CreateAssetTagsMiXin,UpdateAssetTagsMiXin
-from .models import Asset, AssetGroup, IDC, AdminUser, SystemUser, Tag
-from .forms import *
+from common.mixins import JSONResponseMixin
+from common.utils import get_object_or_none
+from .utils import CreateAssetTagsMiXin, UpdateAssetTagsMiXin
+from . import forms
+from .models import Asset, AssetGroup, AdminUser, IDC, SystemUser, Tag
from .hands import AdminUserRequiredMixin
@@ -45,7 +47,7 @@ class AssetListView(AdminUserRequiredMixin, TemplateView):
class AssetCreateView(AdminUserRequiredMixin, CreateAssetTagsMiXin, CreateView):
model = Asset
tag_type = 'asset'
- form_class = AssetCreateForm
+ form_class = forms.AssetCreateForm
template_name = 'assets/asset_create.html'
success_url = reverse_lazy('assets:asset-list')
@@ -71,7 +73,7 @@ class AssetCreateView(AdminUserRequiredMixin, CreateAssetTagsMiXin, CreateView):
class AssetModalCreateView(AdminUserRequiredMixin, CreateAssetTagsMiXin, ListView):
model = Asset
- form_class = AssetCreateForm
+ form_class = forms.AssetCreateForm
template_name = 'assets/asset_modal_update.html'
success_url = reverse_lazy('assets:asset-list')
@@ -99,7 +101,7 @@ class AssetModalCreateView(AdminUserRequiredMixin, CreateAssetTagsMiXin, ListVie
class AssetUpdateView(AdminUserRequiredMixin, UpdateAssetTagsMiXin, UpdateView):
model = Asset
- form_class = AssetCreateForm
+ form_class = forms.AssetCreateForm
template_name = 'assets/asset_update.html'
success_url = reverse_lazy('assets:asset-list')
new_form = ''
@@ -226,7 +228,7 @@ class AssetModalListView(AdminUserRequiredMixin, ListView):
class AssetGroupCreateView(AdminUserRequiredMixin, CreateView):
model = AssetGroup
- form_class = AssetGroupForm
+ form_class = forms.AssetGroupForm
template_name = 'assets/asset_group_create.html'
success_url = reverse_lazy('assets:asset-group-list')
#ordering = '-id'
@@ -287,7 +289,7 @@ class AssetGroupDetailView(AdminUserRequiredMixin, DetailView):
class AssetGroupUpdateView(AdminUserRequiredMixin, UpdateView):
model = AssetGroup
- form_class = AssetGroupForm
+ form_class = forms.AssetGroupForm
template_name = 'assets/asset_group_create.html'
success_url = reverse_lazy('assets:asset-group-list')
@@ -329,7 +331,7 @@ class IDCListView(AdminUserRequiredMixin, TemplateView):
class IDCCreateView(AdminUserRequiredMixin, CreateView):
model = IDC
- form_class = IDCForm
+ form_class = forms.IDCForm
template_name = 'assets/idc_create_update.html'
success_url = reverse_lazy('assets:idc-list')
@@ -351,7 +353,7 @@ class IDCCreateView(AdminUserRequiredMixin, CreateView):
class IDCUpdateView(AdminUserRequiredMixin, UpdateView):
model = IDC
- form_class = IDCForm
+ form_class = forms.IDCForm
template_name = 'assets/idc_create_update.html'
context_object_name = 'idc'
success_url = reverse_lazy('assets:idc-list')
@@ -420,7 +422,7 @@ class AdminUserListView(AdminUserRequiredMixin, TemplateView):
class AdminUserCreateView(AdminUserRequiredMixin, SuccessMessageMixin, CreateView):
model = AdminUser
- form_class = AdminUserForm
+ form_class = forms.AdminUserForm
template_name = 'assets/admin_user_create_update.html'
success_url = reverse_lazy('assets:admin-user-list')
@@ -446,7 +448,7 @@ class AdminUserCreateView(AdminUserRequiredMixin, SuccessMessageMixin, CreateVie
class AdminUserUpdateView(AdminUserRequiredMixin, UpdateView):
model = AdminUser
- form_class = AdminUserForm
+ form_class = forms.AdminUserForm
template_name = 'assets/admin_user_create_update.html'
def get_context_data(self, **kwargs):
@@ -504,7 +506,7 @@ class SystemUserListView(AdminUserRequiredMixin, TemplateView):
class SystemUserCreateView(AdminUserRequiredMixin, SuccessMessageMixin, CreateView):
model = SystemUser
- form_class = SystemUserForm
+ form_class = forms.SystemUserForm
template_name = 'assets/system_user_create_update.html'
success_url = reverse_lazy('assets:system-user-list')
@@ -528,7 +530,7 @@ class SystemUserCreateView(AdminUserRequiredMixin, SuccessMessageMixin, CreateVi
class SystemUserUpdateView(AdminUserRequiredMixin, UpdateView):
model = SystemUser
- form_class = SystemUserForm
+ form_class = forms.SystemUserForm
template_name = 'assets/system_user_create_update.html'
def get_context_data(self, **kwargs):
@@ -630,7 +632,7 @@ class TagsListView(AdminUserRequiredMixin, ListView):
class AssetTagCreateView(AdminUserRequiredMixin, CreateView):
model = Tag
- form_class = AssetTagForm
+ form_class = forms.AssetTagForm
template_name = 'assets/asset_tag_create.html'
success_url = reverse_lazy('assets:asset-tag-list')
#ordering = '-id'
@@ -679,7 +681,7 @@ class AssetTagDetailView(SingleObjectMixin, AdminUserRequiredMixin, ListView):
class AssetTagUpdateView(AdminUserRequiredMixin, UpdateView):
model = Tag
- form_class = AssetTagForm
+ form_class = forms.AssetTagForm
template_name = 'assets/asset_tag_create.html'
success_url = reverse_lazy('assets:asset-tag-list')
@@ -707,13 +709,15 @@ class AssetTagDeleteView(AdminUserRequiredMixin, DeleteView):
@method_decorator(csrf_exempt, name='dispatch')
-class ExportAssetView(View):
+class AssetExportView(View):
@staticmethod
- def asset_get_attr(asset, attr):
+ def get_asset_attr(asset, attr):
if attr in ['admin_user', 'idc']:
return getattr(asset, attr).name
- if attr in ['status', 'tyoe', 'env']:
- return getattr(asset, 'get_{}_display')
+ elif attr in ['status', 'type', 'env']:
+ return getattr(asset, 'get_{}_display'.format(attr))()
+ else:
+ return getattr(asset, attr)
def get(self, request, *args, **kwargs):
spm = request.GET.get('spm', '')
@@ -725,16 +729,15 @@ class ExportAssetView(View):
wb = Workbook()
ws = wb.active
ws.title = 'Asset'
- header = ['hostname', 'ip', 'port', 'admin_user', 'system_users', 'idc',
- 'cpu', 'memory', 'disk', 'mac_address', 'other_ip', 'remote_card_ip',
- 'os', 'cabinet_no', 'cabinet_pos', 'number', 'status', 'type', 'env',
- 'sn', 'comment']
+ header = ['hostname', 'ip', 'port', 'admin_user', 'idc', 'cpu', 'memory', 'disk',
+ 'mac_address', 'other_ip', 'remote_card_ip', 'os', 'cabinet_no',
+ 'cabinet_pos', 'number', 'status', 'type', 'env', 'sn', 'comment']
ws.append(header)
for asset in assets:
- ws.append([getattr(asset, attr) for attr in header])
+ ws.append([self.get_asset_attr(asset, attr) for attr in header])
- filename = 'users-{}.xlsx'.format(timezone.localtime(timezone.now()).strftime('%Y-%m-%d_%H-%M-%S'))
+ filename = 'assets-{}.xlsx'.format(timezone.localtime(timezone.now()).strftime('%Y-%m-%d_%H-%M-%S'))
response = HttpResponse(save_virtual_workbook(wb), content_type='application/vnd.ms-excel')
response['Content-Disposition'] = 'attachment; filename="%s"' % filename
return response
@@ -742,9 +745,89 @@ class ExportAssetView(View):
def post(self, request, *args, **kwargs):
try:
assets_id = json.loads(request.body).get('assets_id', [])
+ print(assets_id)
except ValueError:
return HttpResponse('Json object not valid', status=400)
spm = uuid.uuid4().get_hex()
cache.set(spm, assets_id, 300)
- url = reverse('users:export-user-csv') + '?spm=%s' % spm
+ url = reverse('assets:asset-export') + '?spm=%s' % spm
return JsonResponse({'redirect': url})
+
+
+class BulkImportAssetView(AdminUserRequiredMixin, JSONResponseMixin, FormView):
+ form_class = forms.FileForm
+
+ def form_valid(self, form):
+ try:
+ wb = load_workbook(form.cleaned_data['file'])
+ ws = wb.get_active_sheet()
+ except Exception as e:
+ print(e)
+ data = {'valid': False, 'msg': 'Not a valid Excel file'}
+ return self.render_json_response(data)
+
+ rows = ws.rows
+ header_all = ['hostname', 'ip', 'port', 'admin_user', 'idc', 'cpu', 'memory', 'disk',
+ 'mac_address', 'other_ip', 'remote_card_ip', 'os', 'cabinet_no',
+ 'cabinet_pos', 'number', 'status', 'type', 'env', 'sn', 'comment']
+ header_min = ['hostname', 'ip', 'port', 'admin_user', 'comment']
+ header = [col.value for col in next(rows)]
+ if header not in header_all and header_min not in header:
+ data = {'valid': False, 'msg': 'Must be same format as template or export file'}
+ return self.render_json_response(data)
+
+ created = []
+ updated = []
+ failed = []
+ for row in rows:
+ asset_dict = dict(zip(header, [col.value for col in row]))
+ if asset_dict.get('admin_user', None):
+ admin_user = get_object_or_none(AdminUser, name=asset_dict['admin_user'])
+ asset_dict['admin_user'] = admin_user
+
+ if asset_dict.get('idc'):
+ idc = get_object_or_none(IDC, name=asset_dict['idc'])
+ asset_dict['idc'] = idc
+
+ if asset_dict.get('type'):
+ asset_display_type_map = dict(zip(dict(Asset.TYPE_CHOICES).values, dict(Asset.TYPE_CHOICES).keys()))
+ asset_type = asset_display_type_map.get(asset_dict['type'], 'Server')
+ asset_dict['type'] = asset_type
+
+ if asset_dict.get('status'):
+ asset_display_status_map = dict(zip(dict(Asset.STATUS_CHOICES).values,
+ dict(Asset.STATUS_CHOICES).keys()))
+ asset_status = asset_display_status_map.get(asset_dict['status'], 'In use')
+ asset_dict['status'] = asset_status
+
+ if asset_dict.get('env'):
+ asset_display_env_map = dict(zip(dict(Asset.ENV_CHOICES).values(),
+ dict(Asset.ENV_CHOICES).keys()))
+ asset_env = asset_display_env_map.get(asset_dict['env'], 'Prod')
+ asset_dict['env'] = asset_env
+
+ try:
+ Asset.objects.create(**asset_dict)
+ created.append(asset_dict['ip'])
+ except IntegrityError as e:
+ asset = Asset.objects.filter(ip=asset_dict['ip'], port=asset_dict['port'])
+ if not asset:
+ failed.append(asset_dict['ip'])
+ continue
+ asset.update(**asset_dict)
+ updated.append(asset_dict['ip'])
+ except TypeError as e:
+ print(e)
+ failed.append(asset_dict['ip'])
+
+ data = {
+ 'created': created,
+ 'created_info': 'Created {}'.format(len(created)),
+ 'updated': updated,
+ 'updated_info': 'Updated {}'.format(len(updated)),
+ 'failed': failed,
+ 'failed_info': 'Failed {}'.format(len(failed)),
+ 'valid': True,
+ 'msg': 'Created: {}. Updated: {}, Error: {}'.format(len(created), len(updated), len(failed))
+ }
+ return self.render_json_response(data)
diff --git a/apps/fixtures/fake.json b/apps/fixtures/fake.json
index c1ed4eece..20cc33075 100644
--- a/apps/fixtures/fake.json
+++ b/apps/fixtures/fake.json
@@ -1 +1 @@
-[{"model": "users.usergroup", "pk": 1, "fields": {"is_discard": false, "discard_time": null, "name": "Default", "comment": "Default user group for all user", "date_created": "2016-11-02T14:49:50Z", "created_by": "System"}}, {"model": "users.usergroup", "pk": 2, "fields": {"is_discard": false, "discard_time": null, "name": "William Henderson", "comment": "Nulla nisl.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 3, "fields": {"is_discard": false, "discard_time": null, "name": "Richard Gordon", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 4, "fields": {"is_discard": false, "discard_time": null, "name": "Louise Sullivan", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 5, "fields": {"is_discard": false, "discard_time": null, "name": "Carl Sims", "comment": "Phasellus in felis.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 6, "fields": {"is_discard": false, "discard_time": null, "name": "Joan Dunn", "comment": "Nam tristique tortor eu pede.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 7, "fields": {"is_discard": false, "discard_time": null, "name": "Karen Alexander", "comment": "Integer ac neque.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 8, "fields": {"is_discard": false, "discard_time": null, "name": "Barbara Rogers", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 9, "fields": {"is_discard": false, "discard_time": null, "name": "Samuel Ferguson", "comment": "Pellentesque eget nunc.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 10, "fields": {"is_discard": false, "discard_time": null, "name": "Emily King", "comment": "In eleifend quam a odio.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 11, "fields": {"is_discard": false, "discard_time": null, "name": "Carol Davis", "comment": "Morbi a ipsum.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 12, "fields": {"is_discard": false, "discard_time": null, "name": "Sarah Mitchell", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 13, "fields": {"is_discard": false, "discard_time": null, "name": "Tina Johnson", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 14, "fields": {"is_discard": false, "discard_time": null, "name": "Dorothy Cole", "comment": "Vestibulum rutrum rutrum neque.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 15, "fields": {"is_discard": false, "discard_time": null, "name": "Debra Hicks", "comment": "Nunc rhoncus dui vel sem.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 16, "fields": {"is_discard": false, "discard_time": null, "name": "Kathryn Burns", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 17, "fields": {"is_discard": false, "discard_time": null, "name": "Christina Ferguson", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 18, "fields": {"is_discard": false, "discard_time": null, "name": "Amanda Medina", "comment": "In congue.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 19, "fields": {"is_discard": false, "discard_time": null, "name": "Jessica Sims", "comment": "Nunc rhoncus dui vel sem.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 20, "fields": {"is_discard": false, "discard_time": null, "name": "Donna Bradley", "comment": "Praesent blandit.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 21, "fields": {"is_discard": false, "discard_time": null, "name": "Sharon Reynolds", "comment": "Aenean lectus.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 22, "fields": {"is_discard": false, "discard_time": null, "name": "Phyllis Hunt", "comment": "Nulla tellus.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 23, "fields": {"is_discard": false, "discard_time": null, "name": "Jean Riley", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "date_created": "2016-11-02T14:58:32Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 24, "fields": {"is_discard": false, "discard_time": null, "name": "Cynthia Henry", "comment": "Morbi a ipsum.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 25, "fields": {"is_discard": false, "discard_time": null, "name": "Louise Payne", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 26, "fields": {"is_discard": false, "discard_time": null, "name": "Carolyn Nguyen", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 27, "fields": {"is_discard": false, "discard_time": null, "name": "Amy Berry", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 28, "fields": {"is_discard": false, "discard_time": null, "name": "Lillian Little", "comment": "Pellentesque viverra pede ac diam.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 29, "fields": {"is_discard": false, "discard_time": null, "name": "Christina Garcia", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 30, "fields": {"is_discard": false, "discard_time": null, "name": "Wanda Black", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 31, "fields": {"is_discard": false, "discard_time": null, "name": "Bonnie James", "comment": "Nullam varius.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 32, "fields": {"is_discard": false, "discard_time": null, "name": "Barbara Day", "comment": "Quisque porta volutpat erat.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 33, "fields": {"is_discard": false, "discard_time": null, "name": "Irene Griffin", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 34, "fields": {"is_discard": false, "discard_time": null, "name": "Kimberly Gordon", "comment": "Phasellus id sapien in sapien iaculis congue.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 35, "fields": {"is_discard": false, "discard_time": null, "name": "Tina Lewis", "comment": "Nullam molestie nibh in lectus.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 36, "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Morrison", "comment": "Donec dapibus.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 37, "fields": {"is_discard": false, "discard_time": null, "name": "Beverly Rodriguez", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 38, "fields": {"is_discard": false, "discard_time": null, "name": "Wanda George", "comment": "Integer ac neque.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 39, "fields": {"is_discard": false, "discard_time": null, "name": "Anna Roberts", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 40, "fields": {"is_discard": false, "discard_time": null, "name": "Keith Medina", "comment": "Pellentesque at nulla.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 41, "fields": {"is_discard": false, "discard_time": null, "name": "Kathy Griffin", "comment": "Etiam faucibus cursus urna.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 42, "fields": {"is_discard": false, "discard_time": null, "name": "Annie Cunningham", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 43, "fields": {"is_discard": false, "discard_time": null, "name": "Tina Lopez", "comment": "Ut tellus.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 44, "fields": {"is_discard": false, "discard_time": null, "name": "Rebecca Bradley", "comment": "Suspendisse accumsan tortor quis turpis.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 45, "fields": {"is_discard": false, "discard_time": null, "name": "Tina Knight", "comment": "Mauris ullamcorper purus sit amet nulla.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 46, "fields": {"is_discard": false, "discard_time": null, "name": "Tina Russell", "comment": "In sagittis dui vel nisl.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 47, "fields": {"is_discard": false, "discard_time": null, "name": "Benjamin Clark", "comment": "In sagittis dui vel nisl.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 48, "fields": {"is_discard": false, "discard_time": null, "name": "Anna Butler", "comment": "Nulla nisl.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 49, "fields": {"is_discard": false, "discard_time": null, "name": "Mildred Spencer", "comment": "Nulla mollis molestie lorem.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 50, "fields": {"is_discard": false, "discard_time": null, "name": "Angela Jenkins", "comment": "Etiam vel augue.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 51, "fields": {"is_discard": false, "discard_time": null, "name": "Joan Bishop", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 52, "fields": {"is_discard": false, "discard_time": null, "name": "Julie Fowler", "comment": "Maecenas tincidunt lacus at velit.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 53, "fields": {"is_discard": false, "discard_time": null, "name": "Judith Cook", "comment": "Cras pellentesque volutpat dui.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 54, "fields": {"is_discard": false, "discard_time": null, "name": "Theresa West", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 55, "fields": {"is_discard": false, "discard_time": null, "name": "Judy Gilbert", "comment": "Morbi non lectus.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 56, "fields": {"is_discard": false, "discard_time": null, "name": "Amy Henderson", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 57, "fields": {"is_discard": false, "discard_time": null, "name": "Patricia Phillips", "comment": "Phasellus in felis.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 58, "fields": {"is_discard": false, "discard_time": null, "name": "Brenda James", "comment": "Ut at dolor quis odio consequat varius.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 59, "fields": {"is_discard": false, "discard_time": null, "name": "Donna Holmes", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 60, "fields": {"is_discard": false, "discard_time": null, "name": "Annie Hernandez", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 61, "fields": {"is_discard": false, "discard_time": null, "name": "Lisa Fowler", "comment": "Pellentesque ultrices mattis odio.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 62, "fields": {"is_discard": false, "discard_time": null, "name": "Wanda Hansen", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 63, "fields": {"is_discard": false, "discard_time": null, "name": "Karen Edwards", "comment": "Morbi a ipsum.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 64, "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Crawford", "comment": "Donec semper sapien a libero.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 65, "fields": {"is_discard": false, "discard_time": null, "name": "Nancy Gutierrez", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 66, "fields": {"is_discard": false, "discard_time": null, "name": "Ruth Spencer", "comment": "Suspendisse potenti.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 67, "fields": {"is_discard": false, "discard_time": null, "name": "Earl Phillips", "comment": "Curabitur in libero ut massa volutpat convallis.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 68, "fields": {"is_discard": false, "discard_time": null, "name": "Patricia Gutierrez", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 69, "fields": {"is_discard": false, "discard_time": null, "name": "Donna Carroll", "comment": "Integer ac neque.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 70, "fields": {"is_discard": false, "discard_time": null, "name": "Doris Powell", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 71, "fields": {"is_discard": false, "discard_time": null, "name": "Amy Ross", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 72, "fields": {"is_discard": false, "discard_time": null, "name": "Ruth Morris", "comment": "Phasellus in felis.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 73, "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Roberts", "comment": "Vivamus tortor.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 74, "fields": {"is_discard": false, "discard_time": null, "name": "Julie Diaz", "comment": "Duis aliquam convallis nunc.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 75, "fields": {"is_discard": false, "discard_time": null, "name": "Sara Payne", "comment": "Nam dui.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 76, "fields": {"is_discard": false, "discard_time": null, "name": "Christina Burns", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 77, "fields": {"is_discard": false, "discard_time": null, "name": "Gloria Rivera", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 78, "fields": {"is_discard": false, "discard_time": null, "name": "Martha Burton", "comment": "Nulla mollis molestie lorem.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 79, "fields": {"is_discard": false, "discard_time": null, "name": "Judith Powell", "comment": "Integer ac neque.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 80, "fields": {"is_discard": false, "discard_time": null, "name": "Heather Hansen", "comment": "Mauris sit amet eros.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 81, "fields": {"is_discard": false, "discard_time": null, "name": "Elizabeth Hamilton", "comment": "Cras pellentesque volutpat dui.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 82, "fields": {"is_discard": false, "discard_time": null, "name": "Kelly Johnston", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 83, "fields": {"is_discard": false, "discard_time": null, "name": "Willie Weaver", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 84, "fields": {"is_discard": false, "discard_time": null, "name": "Cheryl Cook", "comment": "Fusce posuere felis sed lacus.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 85, "fields": {"is_discard": false, "discard_time": null, "name": "Emily Wilson", "comment": "Donec ut dolor.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 86, "fields": {"is_discard": false, "discard_time": null, "name": "Robin Frazier", "comment": "Curabitur in libero ut massa volutpat convallis.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 87, "fields": {"is_discard": false, "discard_time": null, "name": "Carol Gonzales", "comment": "Pellentesque at nulla.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 88, "fields": {"is_discard": false, "discard_time": null, "name": "Wanda Morales", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 89, "fields": {"is_discard": false, "discard_time": null, "name": "Julie Hill", "comment": "Morbi a ipsum.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 90, "fields": {"is_discard": false, "discard_time": null, "name": "Rose Ward", "comment": "Vivamus tortor.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 91, "fields": {"is_discard": false, "discard_time": null, "name": "Doris Garza", "comment": "Ut tellus.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 92, "fields": {"is_discard": false, "discard_time": null, "name": "Janet Simpson", "comment": "Proin eu mi.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 93, "fields": {"is_discard": false, "discard_time": null, "name": "Elizabeth West", "comment": "Suspendisse potenti.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 94, "fields": {"is_discard": false, "discard_time": null, "name": "Julia Ryan", "comment": "Morbi porttitor lorem id ligula.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 95, "fields": {"is_discard": false, "discard_time": null, "name": "Diana Fuller", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 96, "fields": {"is_discard": false, "discard_time": null, "name": "Christina Henderson", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 97, "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Jordan", "comment": "Nulla mollis molestie lorem.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 98, "fields": {"is_discard": false, "discard_time": null, "name": "Jane Perkins", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 99, "fields": {"is_discard": false, "discard_time": null, "name": "Carolyn Fisher", "comment": "Cras pellentesque volutpat dui.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 100, "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Gonzalez", "comment": "Cras pellentesque volutpat dui.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 101, "fields": {"is_discard": false, "discard_time": null, "name": "Jean Edwards", "comment": "Pellentesque viverra pede ac diam.", "date_created": "2016-11-02T14:58:33Z", "created_by": "admin"}}, {"model": "assets.idc", "pk": 1, "fields": {"name": "Kathryn Richards", "bandwidth": "200M", "contact": "Sarah Russell", "phone": "9-(421)136-1697", "address": "Signal Hill04981 Erie Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus."}}, {"model": "assets.idc", "pk": 2, "fields": {"name": "Emily Rogers", "bandwidth": "200M", "contact": "Julie Wright", "phone": "2-(310)208-9712", "address": "Sonoma87246 Sycamore Road", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Sed accumsan felis."}}, {"model": "assets.idc", "pk": 3, "fields": {"name": "Jessica Coleman", "bandwidth": "200M", "contact": "Brenda Hansen", "phone": "7-(181)496-4670", "address": "Seaside0967 Mayfield Park", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis at velit eu est congue elementum."}}, {"model": "assets.idc", "pk": 4, "fields": {"name": "Rachel Jordan", "bandwidth": "200M", "contact": "Joyce Perkins", "phone": "7-(202)723-2046", "address": "Montague6 Ridgeview Court", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In eleifend quam a odio."}}, {"model": "assets.idc", "pk": 5, "fields": {"name": "Ann Lawson", "bandwidth": "200M", "contact": "Lillian Montgome", "phone": "3-(674)154-8304", "address": "Watsonville95 Derek Alley", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Curabitur convallis."}}, {"model": "assets.idc", "pk": 6, "fields": {"name": "Karen Welch", "bandwidth": "200M", "contact": "Rose Green", "phone": "2-(934)534-3059", "address": "Santa Clarita6549 Dakota Street", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl."}}, {"model": "assets.idc", "pk": 7, "fields": {"name": "Emily Roberts", "bandwidth": "200M", "contact": "Judy Sullivan", "phone": "1-(571)068-6797", "address": "San Rafael7 Brown Pass", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla."}}, {"model": "assets.idc", "pk": 8, "fields": {"name": "Mary Jacobs", "bandwidth": "200M", "contact": "Rebecca Harrison", "phone": "9-(100)438-4147", "address": "Maywood7809 Charing Cross Alley", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.idc", "pk": 9, "fields": {"name": "Tina Griffin", "bandwidth": "200M", "contact": "Cheryl Adams", "phone": "8-(342)533-2326", "address": "San Jacinto15608 Miller Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Sed ante."}}, {"model": "assets.idc", "pk": 10, "fields": {"name": "Louise Austin", "bandwidth": "200M", "contact": "Ann Frazier", "phone": "9-(633)273-2032", "address": "Glendale96 Darwin Lane", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Pellentesque viverra pede ac diam."}}, {"model": "assets.idc", "pk": 11, "fields": {"name": "Diana Rose", "bandwidth": "200M", "contact": "Kathryn Carroll", "phone": "6-(664)486-7587", "address": "Fort Jones491 Novick Street", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est."}}, {"model": "assets.idc", "pk": 12, "fields": {"name": "Evelyn Reid", "bandwidth": "200M", "contact": "Michelle Carpent", "phone": "0-(311)951-1541", "address": "Thousand Oaks06512 Springs Point", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In eleifend quam a odio."}}, {"model": "assets.idc", "pk": 13, "fields": {"name": "Patricia Barnes", "bandwidth": "200M", "contact": "Gloria King", "phone": "0-(785)764-1516", "address": "Brawley0 Monument Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nunc nisl."}}, {"model": "assets.idc", "pk": 14, "fields": {"name": "Christine Daniels", "bandwidth": "200M", "contact": "Virginia Spencer", "phone": "4-(009)378-7809", "address": "Dorris2794 Fallview Place", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede."}}, {"model": "assets.idc", "pk": 15, "fields": {"name": "Maria Matthews", "bandwidth": "200M", "contact": "Kathy Walker", "phone": "5-(892)770-0463", "address": "Pasadena782 Fairfield Drive", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.idc", "pk": 16, "fields": {"name": "Rachel Sanchez", "bandwidth": "200M", "contact": "Marie Lawson", "phone": "9-(940)168-3241", "address": "Livingston1382 Parkside Trail", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Phasellus in felis."}}, {"model": "assets.idc", "pk": 17, "fields": {"name": "Martha Hanson", "bandwidth": "200M", "contact": "Diane Turner", "phone": "6-(464)735-7215", "address": "Anderson0916 Cardinal Hill", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl."}}, {"model": "assets.idc", "pk": 18, "fields": {"name": "Kathleen Torres", "bandwidth": "200M", "contact": "Jennifer Webb", "phone": "6-(704)019-2302", "address": "Montague45179 Schiller Circle", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Praesent blandit lacinia erat."}}, {"model": "assets.idc", "pk": 19, "fields": {"name": "Jean King", "bandwidth": "200M", "contact": "Dorothy Johnston", "phone": "2-(310)966-6451", "address": "Gridley159 Mayfield Pass", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Integer non velit."}}, {"model": "assets.idc", "pk": 20, "fields": {"name": "Lisa Banks", "bandwidth": "200M", "contact": "Rose Cole", "phone": "6-(741)943-4224", "address": "Lakewood329 Northview Road", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis ac nibh."}}, {"model": "assets.idc", "pk": 21, "fields": {"name": "Debra Nichols", "bandwidth": "200M", "contact": "Amy Wright", "phone": "6-(594)486-7786", "address": "Citrus Heights1946 Porter Park", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Proin risus."}}, {"model": "assets.idc", "pk": 22, "fields": {"name": "Kathleen Larson", "bandwidth": "200M", "contact": "Virginia Peters", "phone": "7-(046)519-5247", "address": "Bishop83140 Kensington Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Sed accumsan felis."}}, {"model": "assets.idc", "pk": 23, "fields": {"name": "Pamela Carter", "bandwidth": "200M", "contact": "Janet Powell", "phone": "9-(177)310-4912", "address": "Westminster56 Reinke Street", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.idc", "pk": 24, "fields": {"name": "Marilyn Campbell", "bandwidth": "200M", "contact": "Jennifer Cruz", "phone": "7-(941)581-4041", "address": "Kingsburg295 Lake View Place", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.idc", "pk": 25, "fields": {"name": "Michelle Fisher", "bandwidth": "200M", "contact": "Robin Shaw", "phone": "2-(180)496-9567", "address": "Woodland52 Moland Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.idc", "pk": 26, "fields": {"name": "Stephanie Graham", "bandwidth": "200M", "contact": "Sara Harvey", "phone": "8-(220)481-3656", "address": "Woodside7 Del Mar Hill", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.idc", "pk": 27, "fields": {"name": "Maria Mcdonald", "bandwidth": "200M", "contact": "Irene Mitchell", "phone": "5-(856)610-7154", "address": "Reedley140 Starling Place", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa."}}, {"model": "assets.idc", "pk": 28, "fields": {"name": "Sara Moore", "bandwidth": "200M", "contact": "Phyllis Brown", "phone": "0-(913)103-2048", "address": "Placentia2435 Di Loreto Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi non quam nec dui luctus rutrum."}}, {"model": "assets.idc", "pk": 29, "fields": {"name": "Laura Jones", "bandwidth": "200M", "contact": "Ashley Rodriguez", "phone": "1-(071)348-9580", "address": "Petaluma15 Talmadge Court", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.idc", "pk": 30, "fields": {"name": "Judith White", "bandwidth": "200M", "contact": "Janice Jenkins", "phone": "3-(695)158-9947", "address": "Studio City7059 Daystar Pass", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Sed sagittis."}}, {"model": "assets.idc", "pk": 31, "fields": {"name": "Julie Gutierrez", "bandwidth": "200M", "contact": "Tina Palmer", "phone": "7-(242)065-7796", "address": "Carlsbad5 Schurz Circle", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo."}}, {"model": "assets.idc", "pk": 32, "fields": {"name": "Christina Wagner", "bandwidth": "200M", "contact": "Bonnie Moreno", "phone": "0-(437)078-9022", "address": "Yucca Valley0361 Prentice Lane", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Etiam vel augue."}}, {"model": "assets.idc", "pk": 33, "fields": {"name": "Diana Stanley", "bandwidth": "200M", "contact": "Maria Mccoy", "phone": "3-(123)866-3708", "address": "West Sacramento4359 Becker Court", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede."}}, {"model": "assets.idc", "pk": 34, "fields": {"name": "Irene Lawrence", "bandwidth": "200M", "contact": "Rachel Ramos", "phone": "9-(626)158-7308", "address": "Turlock46578 Monica Place", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Quisque id justo sit amet sapien dignissim vestibulum."}}, {"model": "assets.idc", "pk": 35, "fields": {"name": "Phyllis Morales", "bandwidth": "200M", "contact": "Phyllis Olson", "phone": "7-(897)131-6114", "address": "Rancho Palos Verdes784 School Way", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Cras in purus eu magna vulputate luctus."}}, {"model": "assets.idc", "pk": 36, "fields": {"name": "Rose Holmes", "bandwidth": "200M", "contact": "Melissa West", "phone": "0-(071)834-4068", "address": "Sanger0319 East Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Praesent blandit lacinia erat."}}, {"model": "assets.idc", "pk": 37, "fields": {"name": "Diana Russell", "bandwidth": "200M", "contact": "Lori Franklin", "phone": "1-(830)708-0268", "address": "Simi Valley8 Village Green Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nunc rhoncus dui vel sem."}}, {"model": "assets.idc", "pk": 38, "fields": {"name": "Evelyn Perkins", "bandwidth": "200M", "contact": "Helen Cook", "phone": "9-(014)562-9228", "address": "West Sacramento32704 Vermont Park", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Etiam pretium iaculis justo."}}, {"model": "assets.idc", "pk": 39, "fields": {"name": "Diane Bailey", "bandwidth": "200M", "contact": "Lillian Hansen", "phone": "2-(950)267-2382", "address": "Burlingame4 Sycamore Hill", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis."}}, {"model": "assets.idc", "pk": 40, "fields": {"name": "Cheryl Wilson", "bandwidth": "200M", "contact": "Shirley Nguyen", "phone": "4-(413)340-8428", "address": "City of Commerce158 Pond Junction", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vivamus vel nulla eget eros elementum pellentesque."}}, {"model": "assets.idc", "pk": 41, "fields": {"name": "Joan Freeman", "bandwidth": "200M", "contact": "Sara Hudson", "phone": "9-(664)321-0091", "address": "Solvang802 Waubesa Hill", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue."}}, {"model": "assets.idc", "pk": 42, "fields": {"name": "Patricia Lawson", "bandwidth": "200M", "contact": "Jessica Hughes", "phone": "0-(952)078-2172", "address": "Cathedral City7465 Lake View Court", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Praesent blandit lacinia erat."}}, {"model": "assets.idc", "pk": 43, "fields": {"name": "Nicole Weaver", "bandwidth": "200M", "contact": "Susan Moore", "phone": "0-(138)623-9845", "address": "Redding68432 2nd Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Sed ante."}}, {"model": "assets.idc", "pk": 44, "fields": {"name": "Lois Carpenter", "bandwidth": "200M", "contact": "Teresa Moreno", "phone": "1-(247)139-9948", "address": "Alturas7539 Forster Lane", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Donec vitae nisi."}}, {"model": "assets.idc", "pk": 45, "fields": {"name": "Lori Banks", "bandwidth": "200M", "contact": "Ashley Freeman", "phone": "9-(452)882-0212", "address": "Apple Valley49 Lawn Drive", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat."}}, {"model": "assets.idc", "pk": 46, "fields": {"name": "Nicole Hill", "bandwidth": "200M", "contact": "Cheryl Robinson", "phone": "0-(172)257-2358", "address": "San Bernardino1593 Aberg Lane", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Donec ut mauris eget massa tempor convallis."}}, {"model": "assets.idc", "pk": 47, "fields": {"name": "Theresa Baker", "bandwidth": "200M", "contact": "Teresa Scott", "phone": "8-(978)612-4796", "address": "Lincoln5 Mitchell Drive", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nulla facilisi."}}, {"model": "assets.idc", "pk": 48, "fields": {"name": "Elizabeth Harris", "bandwidth": "200M", "contact": "Pamela Meyer", "phone": "5-(134)663-1430", "address": "La Palma48 Mallard Park", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Suspendisse ornare consequat lectus."}}, {"model": "assets.idc", "pk": 49, "fields": {"name": "Janice Lane", "bandwidth": "200M", "contact": "Denise Duncan", "phone": "3-(293)463-8380", "address": "East Palo Alto31620 Hayes Trail", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Maecenas ut massa quis augue luctus tincidunt."}}, {"model": "assets.idc", "pk": 50, "fields": {"name": "Marie Murray", "bandwidth": "200M", "contact": "Sandra Dunn", "phone": "7-(638)477-1637", "address": "Plymouth1 Crest Line Trail", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": 51, "fields": {"name": "Lois Willis", "bandwidth": "200M", "contact": "Michelle Adams", "phone": "6-(265)417-9280", "address": "Rialto34 Ilene Crossing", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Proin at turpis a pede posuere nonummy."}}, {"model": "assets.idc", "pk": 52, "fields": {"name": "Carol Miller", "bandwidth": "200M", "contact": "Joan Ellis", "phone": "3-(786)019-8658", "address": "Plymouth53 Express Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Praesent lectus."}}, {"model": "assets.idc", "pk": 53, "fields": {"name": "Sarah Webb", "bandwidth": "200M", "contact": "Shirley Oliver", "phone": "7-(421)003-6993", "address": "Concord0 Derek Pass", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Ut tellus."}}, {"model": "assets.idc", "pk": 54, "fields": {"name": "Tammy Snyder", "bandwidth": "200M", "contact": "Julie Wright", "phone": "9-(946)988-4076", "address": "Beverly Hills56 Schurz Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Etiam vel augue."}}, {"model": "assets.idc", "pk": 55, "fields": {"name": "Kelly Frazier", "bandwidth": "200M", "contact": "Melissa Garrett", "phone": "7-(718)218-9974", "address": "West Sacramento58329 Hoard Way", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi."}}, {"model": "assets.idc", "pk": 56, "fields": {"name": "Kathleen Brooks", "bandwidth": "200M", "contact": "Janet Burke", "phone": "4-(868)504-4994", "address": "South Gate91075 Service Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Sed accumsan felis."}}, {"model": "assets.idc", "pk": 57, "fields": {"name": "Christine Clark", "bandwidth": "200M", "contact": "Jessica Dixon", "phone": "0-(285)901-3716", "address": "Lake Forest56408 Pankratz Place", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:50Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nam tristique tortor eu pede."}}, {"model": "assets.idc", "pk": 58, "fields": {"name": "Emily Medina", "bandwidth": "200M", "contact": "Michelle Jacobs", "phone": "9-(358)748-5673", "address": "Lancaster486 Shopko Alley", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In sagittis dui vel nisl."}}, {"model": "assets.idc", "pk": 59, "fields": {"name": "Kimberly Larson", "bandwidth": "200M", "contact": "Irene Chapman", "phone": "2-(581)081-7587", "address": "Los Altos Hills65 Grim Hill", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Curabitur convallis."}}, {"model": "assets.idc", "pk": 60, "fields": {"name": "Marie Meyer", "bandwidth": "200M", "contact": "Laura Ford", "phone": "0-(454)827-3426", "address": "Tiburon07 Merchant Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nulla ut erat id mauris vulputate elementum."}}, {"model": "assets.idc", "pk": 61, "fields": {"name": "Annie Brown", "bandwidth": "200M", "contact": "Wanda James", "phone": "2-(073)839-6177", "address": "Los Altos79205 Linden Lane", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Praesent id massa id nisl venenatis lacinia."}}, {"model": "assets.idc", "pk": 62, "fields": {"name": "Lillian Meyer", "bandwidth": "200M", "contact": "Angela Williams", "phone": "3-(232)347-7999", "address": "Wasco91 Donald Circle", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Vivamus tortor."}}, {"model": "assets.idc", "pk": 63, "fields": {"name": "Tina Morgan", "bandwidth": "200M", "contact": "Evelyn Henry", "phone": "9-(529)671-0589", "address": "Hughson0 Miller Junction", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis aliquam convallis nunc."}}, {"model": "assets.idc", "pk": 64, "fields": {"name": "Jean Miller", "bandwidth": "200M", "contact": "Deborah Kelley", "phone": "3-(224)846-9340", "address": "Brea57168 Golf View Alley", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio."}}, {"model": "assets.idc", "pk": 65, "fields": {"name": "Cheryl Ward", "bandwidth": "200M", "contact": "Judith Howard", "phone": "2-(761)258-2130", "address": "Orland80651 Namekagon Trail", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Curabitur convallis."}}, {"model": "assets.idc", "pk": 66, "fields": {"name": "Irene Wilson", "bandwidth": "200M", "contact": "Tina Mitchell", "phone": "9-(672)663-4887", "address": "Los Altos6 Quincy Lane", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vivamus tortor."}}, {"model": "assets.idc", "pk": 67, "fields": {"name": "Virginia Duncan", "bandwidth": "200M", "contact": "Rose Rice", "phone": "3-(442)251-9213", "address": "West Sacramento9 Westridge Pass", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Cras pellentesque volutpat dui."}}, {"model": "assets.idc", "pk": 68, "fields": {"name": "Andrea Sims", "bandwidth": "200M", "contact": "Ashley Cook", "phone": "8-(059)909-2446", "address": "Fort Jones430 Pond Court", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nulla mollis molestie lorem."}}, {"model": "assets.idc", "pk": 69, "fields": {"name": "Wanda Vasquez", "bandwidth": "200M", "contact": "Virginia Larson", "phone": "2-(632)338-9984", "address": "Danville43 Grim Point", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."}}, {"model": "assets.idc", "pk": 70, "fields": {"name": "Alice Martin", "bandwidth": "200M", "contact": "Ruth Porter", "phone": "3-(684)223-8493", "address": "Agoura Hills392 Independence Lane", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Sed vel enim sit amet nunc viverra dapibus."}}, {"model": "assets.idc", "pk": 71, "fields": {"name": "Elizabeth Armstrong", "bandwidth": "200M", "contact": "Angela Edwards", "phone": "6-(019)478-0640", "address": "Barstow0 Susan Street", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi non lectus."}}, {"model": "assets.idc", "pk": 72, "fields": {"name": "Marilyn Bell", "bandwidth": "200M", "contact": "Anne Carter", "phone": "2-(745)103-5215", "address": "Oroville13 Nevada Drive", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi ut odio."}}, {"model": "assets.idc", "pk": 73, "fields": {"name": "Maria Hawkins", "bandwidth": "200M", "contact": "Kelly Robertson", "phone": "4-(554)900-8031", "address": "Livermore3682 Veith Way", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.idc", "pk": 74, "fields": {"name": "Judith Johnson", "bandwidth": "200M", "contact": "Shirley Mason", "phone": "6-(050)971-0284", "address": "Laguna Beach6703 Maywood Way", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.idc", "pk": 75, "fields": {"name": "Gloria Gardner", "bandwidth": "200M", "contact": "Sandra Stone", "phone": "7-(694)744-0636", "address": "Hawthorne58724 Chive Point", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi a ipsum."}}, {"model": "assets.idc", "pk": 76, "fields": {"name": "Diane Watson", "bandwidth": "200M", "contact": "Irene Griffin", "phone": "8-(979)567-3479", "address": "Irwindale954 Green Ridge Junction", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": 77, "fields": {"name": "Melissa Wells", "bandwidth": "200M", "contact": "Kelly Stanley", "phone": "0-(117)129-3538", "address": "Pleasanton7438 Ryan Road", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla suscipit ligula in lacus."}}, {"model": "assets.idc", "pk": 78, "fields": {"name": "Ruby Hansen", "bandwidth": "200M", "contact": "Kelly Ramos", "phone": "3-(503)966-4233", "address": "Point Arena258 Linden Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Curabitur in libero ut massa volutpat convallis."}}, {"model": "assets.idc", "pk": 79, "fields": {"name": "Lisa Garza", "bandwidth": "200M", "contact": "Virginia Carter", "phone": "2-(045)055-4980", "address": "Dublin5349 Superior Way", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante."}}, {"model": "assets.idc", "pk": 80, "fields": {"name": "Michelle Nguyen", "bandwidth": "200M", "contact": "Jean James", "phone": "3-(275)157-4200", "address": "Orange Cove2730 Service Park", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Aenean lectus."}}, {"model": "assets.idc", "pk": 81, "fields": {"name": "Annie Adams", "bandwidth": "200M", "contact": "Emily Ramos", "phone": "8-(434)343-6135", "address": "Novato67 Ludington Alley", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Aenean auctor gravida sem."}}, {"model": "assets.idc", "pk": 82, "fields": {"name": "Rachel Kelly", "bandwidth": "200M", "contact": "Lillian Ruiz", "phone": "4-(376)639-4416", "address": "Woodlake91 Thackeray Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla."}}, {"model": "assets.idc", "pk": 83, "fields": {"name": "Nancy Banks", "bandwidth": "200M", "contact": "Phyllis Ward", "phone": "7-(226)817-3867", "address": "Redwood City692 Havey Hill", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla facilisi."}}, {"model": "assets.idc", "pk": 84, "fields": {"name": "Frances Johnston", "bandwidth": "200M", "contact": "Deborah Pierce", "phone": "0-(028)280-5923", "address": "San Marcos6 Nelson Hill", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nulla nisl."}}, {"model": "assets.idc", "pk": 85, "fields": {"name": "Cheryl Morrison", "bandwidth": "200M", "contact": "Julie Kelly", "phone": "5-(243)259-4373", "address": "Santa Barbara71359 Gulseth Hill", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Integer non velit."}}, {"model": "assets.idc", "pk": 86, "fields": {"name": "Tammy Webb", "bandwidth": "200M", "contact": "Mary Gardner", "phone": "0-(705)191-3825", "address": "Hemet05381 Eastwood Lane", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Mauris sit amet eros."}}, {"model": "assets.idc", "pk": 87, "fields": {"name": "Susan Ramos", "bandwidth": "200M", "contact": "Andrea Olson", "phone": "2-(140)746-8118", "address": "Murrieta27 Waywood Junction", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Donec posuere metus vitae ipsum."}}, {"model": "assets.idc", "pk": 88, "fields": {"name": "Kathleen Vasquez", "bandwidth": "200M", "contact": "Cheryl Ray", "phone": "2-(469)040-3369", "address": "Patterson62 Ilene Alley", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.idc", "pk": 89, "fields": {"name": "Deborah Flores", "bandwidth": "200M", "contact": "Karen Hernandez", "phone": "1-(383)836-4882", "address": "Kingsburg6759 Victoria Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Maecenas tincidunt lacus at velit."}}, {"model": "assets.idc", "pk": 90, "fields": {"name": "Betty James", "bandwidth": "200M", "contact": "Betty Jordan", "phone": "4-(782)791-8678", "address": "Artesia8 Kennedy Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Curabitur at ipsum ac tellus semper interdum."}}, {"model": "assets.idc", "pk": 91, "fields": {"name": "Carol Powell", "bandwidth": "200M", "contact": "Jessica Romero", "phone": "2-(109)318-2125", "address": "Solana Beach5 Schiller Park", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante."}}, {"model": "assets.idc", "pk": 92, "fields": {"name": "Virginia Medina", "bandwidth": "200M", "contact": "Sandra Day", "phone": "2-(671)154-7743", "address": "Sonora8049 Muir Circle", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa."}}, {"model": "assets.idc", "pk": 93, "fields": {"name": "Carol Allen", "bandwidth": "200M", "contact": "Emily Burns", "phone": "1-(344)942-0866", "address": "Blythe8945 Rutledge Circle", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Proin interdum mauris non ligula pellentesque ultrices."}}, {"model": "assets.idc", "pk": 94, "fields": {"name": "Marie Oliver", "bandwidth": "200M", "contact": "Anne Cooper", "phone": "4-(889)570-0928", "address": "San Juan Capistrano47 Manufacturers Circle", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Cras pellentesque volutpat dui."}}, {"model": "assets.idc", "pk": 95, "fields": {"name": "Heather Campbell", "bandwidth": "200M", "contact": "Denise Armstrong", "phone": "6-(863)086-3031", "address": "Adelanto9 Riverside Court", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi quis tortor id nulla ultrices aliquet."}}, {"model": "assets.idc", "pk": 96, "fields": {"name": "Debra Olson", "bandwidth": "200M", "contact": "Julia Palmer", "phone": "9-(252)780-6600", "address": "Banning86754 Riverside Crossing", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": 97, "fields": {"name": "Julia Franklin", "bandwidth": "200M", "contact": "Bonnie Carter", "phone": "9-(754)554-9364", "address": "Dixon041 Hooker Crossing", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem."}}, {"model": "assets.idc", "pk": 98, "fields": {"name": "Lois Phillips", "bandwidth": "200M", "contact": "Norma Allen", "phone": "4-(975)718-7451", "address": "San Rafael76518 Hansons Place", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec quis orci eget orci vehicula condimentum."}}, {"model": "assets.idc", "pk": 99, "fields": {"name": "Frances Black", "bandwidth": "200M", "contact": "Jean Williams", "phone": "1-(880)443-8768", "address": "Citrus Heights9510 Dapin Pass", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ac est lacinia nisi venenatis tristique."}}, {"model": "assets.idc", "pk": 100, "fields": {"name": "Teresa Weaver", "bandwidth": "200M", "contact": "Elizabeth Carr", "phone": "0-(448)872-0800", "address": "Los Alamitos120 Claremont Street", "intranet": "", "extranet": "", "date_created": "2016-11-02T14:58:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Mauris sit amet eros."}}, {"model": "assets.assetextend", "pk": 1, "fields": {"key": "status", "value": "In use", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 2, "fields": {"key": "status", "value": "Out of use", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 3, "fields": {"key": "type", "value": "Server", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 4, "fields": {"key": "type", "value": "VM", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 5, "fields": {"key": "type", "value": "Switch", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 6, "fields": {"key": "type", "value": "Router", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 7, "fields": {"key": "type", "value": "Firewall", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 8, "fields": {"key": "type", "value": "Storage", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 9, "fields": {"key": "env", "value": "Production", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 10, "fields": {"key": "env", "value": "Development", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.assetextend", "pk": 11, "fields": {"key": "env", "value": "Testing", "created_by": "System", "date_created": "2016-11-02T14:51:53Z", "comment": ""}}, {"model": "assets.adminuser", "pk": 1, "fields": {"name": "Louise Franklin", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV1Ig.k74Kbv7It_-9OcFde0stLpx06suYL5M71w_MTMaDa9M", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Praesent lectus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 2, "fields": {"name": "Norma Stewart", "username": "heather", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 3, "fields": {"name": "Nicole Lopez", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpcyI.csK88-oI0nE99ZlJR4rK6ERLycOy7RinM2N-ddh1yzA", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nullam varius.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 4, "fields": {"name": "Theresa Porter", "username": "laura", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5hbSI.jEaDr7Y5DsPRdsS21cGYlPi-w3xgG8yJbKjJDhqbSDc", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 5, "fields": {"name": "Jessica Kelly", "username": "janet", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpYmVybyI.JSOBTsKXE5mrplDkrXESWTg_SWw6LjpAeHVtzE5__3o", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Pellentesque viverra pede ac diam.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 6, "fields": {"name": "Anne Harper", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV1Ig.k74Kbv7It_-9OcFde0stLpx06suYL5M71w_MTMaDa9M", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 7, "fields": {"name": "Tina Ryan", "username": "christine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nam tristique tortor eu pede.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 8, "fields": {"name": "Christina Robinson", "username": "maria", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZ25hIg.n7_lEZwzxnXBn5B4uo3looqSDDSKNqXXAxpJYKKNn7c", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Duis at velit eu est congue elementum.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 9, "fields": {"name": "Jessica Schmidt", "username": "margaret", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsZWlmZW5kIg.1OHmiE1zsH9hdrR2t-pBIR6VwxS3R_fBqR18yfdOBxE", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Sed ante.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 10, "fields": {"name": "Margaret Stewart", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdXJpcyI.jcR8xjLt9WrET56Nes7q2CdkHYJAWb7Y2d--saQSumY", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Ut tellus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 11, "fields": {"name": "Catherine Cook", "username": "rose", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5hbSI.jEaDr7Y5DsPRdsS21cGYlPi-w3xgG8yJbKjJDhqbSDc", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 12, "fields": {"name": "Laura Lewis", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1YW0i.ROd2JUuL9lh3hBqwH2HJ7tf8zsYXtJR776EsV1Jpvnw", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nunc rhoncus dui vel sem.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 13, "fields": {"name": "Heather Watkins", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 14, "fields": {"name": "Louise Warren", "username": "angela", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbGl0Ig.hmFDNhwQ0r-Cd9yncMy8mP5gYTjcYpSrkOP6Ty4sx2I", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Integer non velit.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 15, "fields": {"name": "Phyllis Collins", "username": "judy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 16, "fields": {"name": "Louise Ortiz", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1cnN1cyI.9mxH1HpaEaQw85lLa7DsTGky0cMIfTCNruY1ev1QuNw", "_private_key": "", "_public_key": "", "as_default": false, "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 17, "fields": {"name": "Marilyn Jenkins", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvYm9ydGlzIg.RKcewrE2glcmJtRtDpTt8WptvFfwUjhUDMlcdl1Shuw", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Proin at turpis a pede posuere nonummy.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 18, "fields": {"name": "Ashley Fernandez", "username": "brenda", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvcnR0aXRvciI.yYTCpVrahrmYF_MZecG2-63m96KAf7yAzZqmkq8J_V8", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 19, "fields": {"name": "Jane Grant", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.Imx1Y3R1cyI.HgJMJ_hzKIXE6FmvnIJpfQbY4kKS5qd1c2IJ_GxPdqQ", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 20, "fields": {"name": "Sandra Cox", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.Imx1Y3R1cyI.HgJMJ_hzKIXE6FmvnIJpfQbY4kKS5qd1c2IJ_GxPdqQ", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Duis at velit eu est congue elementum.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 21, "fields": {"name": "Melissa Gibson", "username": "wanda", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Donec semper sapien a libero.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 22, "fields": {"name": "Christine Lewis", "username": "catherine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRvbmVjIg.ETQR821NXkrnq13LeE4BygCe_fvaFDJggsQ1ghFFfNU", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Vivamus vestibulum sagittis sapien.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 23, "fields": {"name": "Angela Bell", "username": "lillian", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxhY2luaWEi.k2d8p0z-xevNN7wP2FDZiOuHFRhIiL-MVOtmCJI4vA8", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Etiam faucibus cursus urna.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 24, "fields": {"name": "Cynthia Henderson", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1pIg.9Z3NScNPiRxvreLu8pDuhMVg8PIHs91k9_ntiUwuBPQ", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 25, "fields": {"name": "Robin Medina", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImludGVnZXIi.-DezhdjAfQrm0D1_8467SoZi8I8csCvrksTVQm05pV8", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nam tristique tortor eu pede.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 26, "fields": {"name": "Louise Nichols", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Donec semper sapien a libero.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 27, "fields": {"name": "Gloria Fields", "username": "heather", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Aliquam erat volutpat.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 28, "fields": {"name": "Marie Ruiz", "username": "lori", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Vivamus vestibulum sagittis sapien.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 29, "fields": {"name": "Susan Kennedy", "username": "brenda", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdGFlIg.hgeyUub3irVAJMeHmqEr9yZ7bLM1VSZtwTsRMf3sPoI", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nam nulla.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 30, "fields": {"name": "Kathleen Porter", "username": "annie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0aWFtIg.QEs0SICruIrhYPzqpEG9iKLje7wzoW601XZyyGFsWnk", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 31, "fields": {"name": "Stephanie Hart", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pYmgi.xs16dvVvTgeK6P4sCntrlOibiQ6PQd9Spdj68ir-ctY", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Donec semper sapien a libero.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 32, "fields": {"name": "Andrea Gilbert", "username": "katherine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZyaW5naWxsYSI.YHoYdoIqmmmy1-FwaqQihph7AiwtLCFSs22MAQ4ehJ4", "_private_key": "", "_public_key": "", "as_default": false, "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 33, "fields": {"name": "Irene Price", "username": "amanda", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lcXVlIg.llRzdBaLUQqiEtGwr8xvk7hjLPiN2BUFmsxHGYDOUc4", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Etiam vel augue.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 34, "fields": {"name": "Sharon Rivera", "username": "donna", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Pellentesque viverra pede ac diam.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 35, "fields": {"name": "Teresa Butler", "username": "mary", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsZW1lbnR1bSI.VjtnnN56wvXKPow-CFfs9h8bQk7BgGHfga7eFM8Qy_w", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 36, "fields": {"name": "Beverly Allen", "username": "heather", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 37, "fields": {"name": "Beverly Stewart", "username": "doris", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 38, "fields": {"name": "Christina Morgan", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvcnR0aXRvciI.yYTCpVrahrmYF_MZecG2-63m96KAf7yAzZqmkq8J_V8", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Suspendisse potenti.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 39, "fields": {"name": "Judy Day", "username": "margaret", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvc3VlcmUi.HiqInzbNn9wLyMamRM3OfwBYJ9q4n297DvZzFFDwN7w", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 40, "fields": {"name": "Anne Robertson", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlZCI.8x8y146cvv6phwCp2Q53l_zeUmW1oZkRrbMZG3kbs3w", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Curabitur convallis.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 41, "fields": {"name": "Norma Baker", "username": "cynthia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpYW0i.ptlstDxIX3roDa9-XgVcwFcuugOtvaVsjm7xvHG29s4", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nulla facilisi.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 42, "fields": {"name": "Norma Garcia", "username": "judy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Vestibulum rutrum rutrum neque.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 43, "fields": {"name": "Frances Johnson", "username": "kimberly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnZhbGxpcyI.B_NDb4qHOmbgsEcxTJAb9xrXBHPzya03jDjrKhXztJU", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nunc nisl.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 44, "fields": {"name": "Teresa Long", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9kaW8i.1qhr1N7Gn0TJEa_Q7rIWvOTqqMKwFcHXP7BomzX7J7Q", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nulla tempus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 45, "fields": {"name": "Margaret Welch", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 46, "fields": {"name": "Virginia Lee", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbGl0Ig.hmFDNhwQ0r-Cd9yncMy8mP5gYTjcYpSrkOP6Ty4sx2I", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Quisque porta volutpat erat.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 47, "fields": {"name": "Annie Richardson", "username": "jessica", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hc3NhIg.0T8CCFHSvP7QtFY2vdFxkhj_w0z-ty4y2EYhGhJfOUs", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Fusce consequat.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 48, "fields": {"name": "Kathleen Myers", "username": "elizabeth", "_password": "eyJhbGciOiJIUzI1NiJ9.InByaW1pcyI.OAlhMPsCXTLC41MGIrALVio6iqoIwHbHFj-r4Kg4lso", "_private_key": "", "_public_key": "", "as_default": false, "comment": "In sagittis dui vel nisl.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 49, "fields": {"name": "Evelyn Harris", "username": "donna", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdmFtdXMi.RbLbJ7X5YWe_D8gaSitbKfO_QqGVcW4iUu3TYdjIPKI", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nulla tempus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 50, "fields": {"name": "Judith Hudson", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.InJ1dHJ1bSI.e9e4AJVlXCLyu2tkGWKY-NsMt-cO_6iX0iBXXzYWWNs", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Mauris lacinia sapien quis libero.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 51, "fields": {"name": "Lois Lynch", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbGVzdGllIg.3Ati0FpOQfWlYUHeXFmjZ1KOsOaAGFCSfit5ksNR9kE", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Morbi ut odio.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 52, "fields": {"name": "Kathryn Garcia", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZWNlbmFzIg.QtbNPwgI6icRXHQXQ1Mc58T-B5CY1Drv7XR_3bas3QY", "_private_key": "", "_public_key": "", "as_default": false, "comment": "In congue.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 53, "fields": {"name": "Theresa Nguyen", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpYmVybyI.JSOBTsKXE5mrplDkrXESWTg_SWw6LjpAeHVtzE5__3o", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Integer non velit.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 54, "fields": {"name": "Helen Murray", "username": "janet", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlaGljdWxhIg.24RL7x_K4-FG6MSYl7ekdNgShs6FvH2AA0I4gSogttU", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 55, "fields": {"name": "Emily Marshall", "username": "marie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aSI.AYqnix4dp06WLJ645L4MAveLycKVrZSyNjJnIq0fU2g", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Vivamus tortor.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 56, "fields": {"name": "Katherine Ellis", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Maecenas ut massa quis augue luctus tincidunt.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 57, "fields": {"name": "Judith Lawson", "username": "tina", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lcXVlIg.llRzdBaLUQqiEtGwr8xvk7hjLPiN2BUFmsxHGYDOUc4", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Integer a nibh.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 58, "fields": {"name": "Judith Little", "username": "mary", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aSI.AYqnix4dp06WLJ645L4MAveLycKVrZSyNjJnIq0fU2g", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 59, "fields": {"name": "Helen Elliott", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hc3NhIg.0T8CCFHSvP7QtFY2vdFxkhj_w0z-ty4y2EYhGhJfOUs", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 60, "fields": {"name": "Louise West", "username": "marilyn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Aenean lectus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 61, "fields": {"name": "Amy Patterson", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.InJ1dHJ1bSI.e9e4AJVlXCLyu2tkGWKY-NsMt-cO_6iX0iBXXzYWWNs", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Duis mattis egestas metus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 62, "fields": {"name": "Cynthia Hudson", "username": "linda", "_password": "eyJhbGciOiJIUzI1NiJ9.InJob25jdXMi.zc47wfesB5fcJ-oBaHagDTV8j2ml3oDL---yZnXFmX4", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Suspendisse potenti.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 63, "fields": {"name": "Stephanie James", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 64, "fields": {"name": "Ann Payne", "username": "stephanie", "_password": "eyJhbGciOiJIUzI1NiJ9.InRvcnRvciI.OPG_v82TxcKyRgsGZvElzMJ5qUJRa25waGugUWsE_8U", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 65, "fields": {"name": "Anne Carpenter", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdmVycmEi._5sKpYEDAdzVOMt3SPvcUDflsUZsXSHomn0E3xswexY", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 66, "fields": {"name": "Patricia James", "username": "rose", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1YW0i.jyCCTLkqnAmQ1fjCgxcCdDDxYQhwb20VCeJO2dN0I-s", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nullam varius.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 67, "fields": {"name": "Ruth Stone", "username": "evelyn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlhY3VsaXMi._s5XG4x4ntDRnnbi38JeFne1fvF3h3f9nQJRUGL_vq0", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Morbi non quam nec dui luctus rutrum.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 68, "fields": {"name": "Nancy Shaw", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nam nulla.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 69, "fields": {"name": "Jennifer Woods", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Aenean lectus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 70, "fields": {"name": "Rose Crawford", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsZWlmZW5kIg.1OHmiE1zsH9hdrR2t-pBIR6VwxS3R_fBqR18yfdOBxE", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 71, "fields": {"name": "Sara Peterson", "username": "ann", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRhcGlidXMi._Z9XtQyeuJcMgqBgOxIU0eA5-OWdjiBI0ESFrIm9aYs", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nunc rhoncus dui vel sem.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 72, "fields": {"name": "Karen Robinson", "username": "cynthia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Fusce posuere felis sed lacus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 73, "fields": {"name": "Martha Vasquez", "username": "margaret", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZhdWNpYnVzIg.SrxnGpj2jrOMdcul-w_e6aLjINKpT8WifGDDK44rXMc", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Pellentesque at nulla.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 74, "fields": {"name": "Laura Washington", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.InR1cnBpcyI.S-5yYJpmB1hT7Tl1JIPCGsXZ1ATf1_uaCJq1VwSGaPg", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Praesent lectus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 75, "fields": {"name": "Martha Russell", "username": "cynthia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRvbmVjIg.ETQR821NXkrnq13LeE4BygCe_fvaFDJggsQ1ghFFfNU", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 76, "fields": {"name": "Brenda Griffin", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Pellentesque viverra pede ac diam.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 77, "fields": {"name": "Robin Rodriguez", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1YW0i.ROd2JUuL9lh3hBqwH2HJ7tf8zsYXtJR776EsV1Jpvnw", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Sed accumsan felis.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 78, "fields": {"name": "Christine Lane", "username": "louise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvcmVtIg.oO5aOD2S0EIsqSl9OTTabrNpCWrG3T8nDgA_4OqrsHE", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nulla ac enim.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 79, "fields": {"name": "Emily Russell", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 80, "fields": {"name": "Nicole Reynolds", "username": "jane", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRhcGlidXMi._Z9XtQyeuJcMgqBgOxIU0eA5-OWdjiBI0ESFrIm9aYs", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Pellentesque viverra pede ac diam.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 81, "fields": {"name": "Judith Wood", "username": "robin", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbnRlcyI.U9-mPLi3PtAqPA0X37T_EcxCjKiiMYB8waKn_zTTLqI", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Suspendisse potenti.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 82, "fields": {"name": "Amy Baker", "username": "judy", "_password": "eyJhbGciOiJIUzI1NiJ9.Imp1c3RvIg.OGeg0BhoHWufHxSObxdYqHFC3zur8llMFj8veLxbAFY", "_private_key": "", "_public_key": "", "as_default": false, "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 83, "fields": {"name": "Phyllis Howard", "username": "linda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nulla mollis molestie lorem.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 84, "fields": {"name": "Virginia Ellis", "username": "virginia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Sed ante.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 85, "fields": {"name": "Diane Alexander", "username": "heather", "_password": "eyJhbGciOiJIUzI1NiJ9.InZ1bHB1dGF0ZSI.HAxmcbbI0_SkIFV_ZOG8ZxC0XPSHCWZVLpdWO6lO8oc", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Aenean auctor gravida sem.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 86, "fields": {"name": "Marilyn West", "username": "mary", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZhdWNpYnVzIg.SrxnGpj2jrOMdcul-w_e6aLjINKpT8WifGDDK44rXMc", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Pellentesque eget nunc.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 87, "fields": {"name": "Amanda Jones", "username": "anne", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlcXVhdCI.vLRDCJLof2aVuDu2Ozh-ogfuPPmKCcg9NxF47WcQqig", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Maecenas ut massa quis augue luctus tincidunt.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 88, "fields": {"name": "Gloria Dunn", "username": "jane", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5vbiI.pwMNExwLCmk9BWKxw3hxw9K9h0YRh102FvLNRKTumRs", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 89, "fields": {"name": "Helen Richards", "username": "tina", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnZhbGxpcyI.B_NDb4qHOmbgsEcxTJAb9xrXBHPzya03jDjrKhXztJU", "_private_key": "", "_public_key": "", "as_default": false, "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 90, "fields": {"name": "Cynthia Pierce", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpZ3VsYSI.aZGEVUuvvGP8M_brQEnU40wGGh4xDoW5jzwki7DPGg0", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Curabitur convallis.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 91, "fields": {"name": "Nancy Cunningham", "username": "christine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Y3RvciI.hSbx7NEdaQmgntQbSQ_Lx9tUcIj8U1eRls86nyml8Zc", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Aliquam sit amet diam in magna bibendum imperdiet.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 92, "fields": {"name": "Michelle Cruz", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Fusce posuere felis sed lacus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 93, "fields": {"name": "Laura Owens", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1YW0i.ROd2JUuL9lh3hBqwH2HJ7tf8zsYXtJR776EsV1Jpvnw", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Vivamus tortor.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 94, "fields": {"name": "Irene Perez", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Quisque ut erat.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 95, "fields": {"name": "Kathleen Bowman", "username": "ruby", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Nam dui.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 96, "fields": {"name": "Ashley Mendoza", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Fusce consequat.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 97, "fields": {"name": "Rose Kelly", "username": "martha", "_password": "eyJhbGciOiJIUzI1NiJ9.Imp1c3RvIg.OGeg0BhoHWufHxSObxdYqHFC3zur8llMFj8veLxbAFY", "_private_key": "", "_public_key": "", "as_default": false, "comment": "In blandit ultrices enim.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 98, "fields": {"name": "Catherine Larson", "username": "jacqueline", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlcXVhdCI.vLRDCJLof2aVuDu2Ozh-ogfuPPmKCcg9NxF47WcQqig", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Integer ac neque.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 99, "fields": {"name": "Alice Armstrong", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "_private_key": "", "_public_key": "", "as_default": false, "comment": "In eleifend quam a odio.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 100, "fields": {"name": "Betty Gray", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.InZhcml1cyI.BzMu234lvPRlI2kN5miWuXZsafR4KPWCNSv-xe-Hkes", "_private_key": "", "_public_key": "", "as_default": false, "comment": "Praesent lectus.", "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake"}}, {"model": "assets.systemuser", "pk": 1, "fields": {"name": "Mildred James", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In congue."}}, {"model": "assets.systemuser", "pk": 2, "fields": {"name": "Christina Robertson", "username": "sarah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyb3Mi.u6zpIQpfh7cgPYmscg5N0W9W6cx274KgMtp0pz5_OlY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Duis at velit eu est congue elementum."}}, {"model": "assets.systemuser", "pk": 3, "fields": {"name": "Bonnie Cooper", "username": "christine", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXMi.sr0cWp1ZfjO1QWimGNuf1x_MHaNsiEFy7_UxzlJkIfY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci."}}, {"model": "assets.systemuser", "pk": 4, "fields": {"name": "Diana Perez", "username": "jean", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1ZXQi.0TraHx47KvE6bkOa9qhhUnZ_6VnAq1s7EF2I_pIMdYk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla."}}, {"model": "assets.systemuser", "pk": 5, "fields": {"name": "Joyce Hansen", "username": "frances", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Morbi vel lectus in quam fringilla rhoncus."}}, {"model": "assets.systemuser", "pk": 6, "fields": {"name": "Martha Mccoy", "username": "doris", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lcXVlIg.llRzdBaLUQqiEtGwr8xvk7hjLPiN2BUFmsxHGYDOUc4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.systemuser", "pk": 7, "fields": {"name": "Marilyn Hanson", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Quisque porta volutpat erat."}}, {"model": "assets.systemuser", "pk": 8, "fields": {"name": "Susan Alexander", "username": "kathryn", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nulla nisl."}}, {"model": "assets.systemuser", "pk": 9, "fields": {"name": "Sarah Hawkins", "username": "janet", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Fusce posuere felis sed lacus."}}, {"model": "assets.systemuser", "pk": 10, "fields": {"name": "Doris Griffin", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.Im11cyI.EMRq4XsUbC_YpCauan3_7VrGk-m6OV8YOqmfntYW-tw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante."}}, {"model": "assets.systemuser", "pk": 11, "fields": {"name": "Sandra Russell", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Cras in purus eu magna vulputate luctus."}}, {"model": "assets.systemuser", "pk": 12, "fields": {"name": "Louise Foster", "username": "kimberly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Sed vel enim sit amet nunc viverra dapibus."}}, {"model": "assets.systemuser", "pk": 13, "fields": {"name": "Cynthia Patterson", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlbGxlbnRlc3F1ZSI.3yrIK8gbDmlyR-M0hLUJmm7e0Tqrq3F-2hfrwlnJXQ8", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Phasellus in felis."}}, {"model": "assets.systemuser", "pk": 14, "fields": {"name": "Wanda Mills", "username": "bonnie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlcXVhdCI.vLRDCJLof2aVuDu2Ozh-ogfuPPmKCcg9NxF47WcQqig", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Phasellus in felis."}}, {"model": "assets.systemuser", "pk": 15, "fields": {"name": "Rachel Montgomery", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Donec semper sapien a libero."}}, {"model": "assets.systemuser", "pk": 16, "fields": {"name": "Angela Lewis", "username": "ruth", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlbGxlbnRlc3F1ZSI.3yrIK8gbDmlyR-M0hLUJmm7e0Tqrq3F-2hfrwlnJXQ8", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.systemuser", "pk": 17, "fields": {"name": "Ashley Mason", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpYmVybyI.JSOBTsKXE5mrplDkrXESWTg_SWw6LjpAeHVtzE5__3o", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Mauris sit amet eros."}}, {"model": "assets.systemuser", "pk": 18, "fields": {"name": "Donna Black", "username": "heather", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.systemuser", "pk": 19, "fields": {"name": "Joan Richardson", "username": "gloria", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZ1c2NlIg.uqw6_p8tfiGPkV4IRtBTFE_YTVbOixNTktMa4AAMrbs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.systemuser", "pk": 20, "fields": {"name": "Lois Marshall", "username": "wanda", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5hc2NldHVyIg.38imbSTbL6Rd0WDod36c1lGl1uQQNH_uBtIQflPhFHo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nulla nisl."}}, {"model": "assets.systemuser", "pk": 21, "fields": {"name": "Ashley Graham", "username": "jacqueline", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpY3R1bXN0Ig.owyqiwsx1v5W-7FCwPxXX8ieVl7N7sILLI3SaGMXdn8", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.systemuser", "pk": 22, "fields": {"name": "Donna Sullivan", "username": "evelyn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImJsYW5kaXQi.ib6BRTHTJx8JP6SbdGdZc1_HRSsZHp9wj-FC4vN41ic", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Praesent lectus."}}, {"model": "assets.systemuser", "pk": 23, "fields": {"name": "Paula Frazier", "username": "doris", "_password": "eyJhbGciOiJIUzI1NiJ9.InBoYXNlbGx1cyI.Zn-tLzwjTOOALDdNqorcCv8dpUlJWwDa8PhPqRVfR7s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem."}}, {"model": "assets.systemuser", "pk": 24, "fields": {"name": "Donna Medina", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Fusce posuere felis sed lacus."}}, {"model": "assets.systemuser", "pk": 25, "fields": {"name": "Gloria Reyes", "username": "louise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In sagittis dui vel nisl."}}, {"model": "assets.systemuser", "pk": 26, "fields": {"name": "Sara Hill", "username": "kelly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat."}}, {"model": "assets.systemuser", "pk": 27, "fields": {"name": "Angela Carpenter", "username": "laura", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2wi.bGZH4pJ2wkHxRxfDvzi1ePhYmirT4ibQ-uvsullA4pE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.systemuser", "pk": 28, "fields": {"name": "Dorothy Hicks", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdHRpcyI.5Sp7NUJKOQNxv-1xJ-zA3A3pUkl2vnOfD3Z5g9LiFtQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est."}}, {"model": "assets.systemuser", "pk": 29, "fields": {"name": "Dorothy Fernandez", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo."}}, {"model": "assets.systemuser", "pk": 30, "fields": {"name": "Debra Matthews", "username": "christine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Proin at turpis a pede posuere nonummy."}}, {"model": "assets.systemuser", "pk": 31, "fields": {"name": "Andrea Arnold", "username": "kimberly", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus."}}, {"model": "assets.systemuser", "pk": 32, "fields": {"name": "Tina Sims", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Z3VlIg.crP2_jl_o91zD62WaHCevBI_9ScRk6cXhXtPdAVGOYQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Vivamus in felis eu sapien cursus vestibulum."}}, {"model": "assets.systemuser", "pk": 33, "fields": {"name": "Robin Morrison", "username": "linda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlY3RldHVlciI.TzWrjty_1MomQ90WvTAEYz3Ypaemo4ROSK2xWJjBEbc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 34, "fields": {"name": "Katherine Graham", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Vivamus vel nulla eget eros elementum pellentesque."}}, {"model": "assets.systemuser", "pk": 35, "fields": {"name": "Robin Carr", "username": "shirley", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1ZXQi.0TraHx47KvE6bkOa9qhhUnZ_6VnAq1s7EF2I_pIMdYk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.systemuser", "pk": 36, "fields": {"name": "Christine Davis", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.InRlbXBvciI.ShxIU3cVTgV-zoa58-W_tf_T7HrZ3eYhJ4kg4fHtyIM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Praesent lectus."}}, {"model": "assets.systemuser", "pk": 37, "fields": {"name": "Ashley Edwards", "username": "katherine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvcmVtIg.oO5aOD2S0EIsqSl9OTTabrNpCWrG3T8nDgA_4OqrsHE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante."}}, {"model": "assets.systemuser", "pk": 38, "fields": {"name": "Robin Schmidt", "username": "norma", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.systemuser", "pk": 39, "fields": {"name": "Andrea Stanley", "username": "gloria", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In sagittis dui vel nisl."}}, {"model": "assets.systemuser", "pk": 40, "fields": {"name": "Louise Alvarez", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Morbi non quam nec dui luctus rutrum."}}, {"model": "assets.systemuser", "pk": 41, "fields": {"name": "Denise Arnold", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5hdG9xdWUi.Iu5Lm7nEf2xhD0H7cDSDfd2prnFcJJoQT1mLRaxGs7I", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 42, "fields": {"name": "Kathy Foster", "username": "dorothy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvYm9ydGlzIg.RKcewrE2glcmJtRtDpTt8WptvFfwUjhUDMlcdl1Shuw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.systemuser", "pk": 43, "fields": {"name": "Karen Jenkins", "username": "catherine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVzdCI.kqn80ndZDQ0Gc7AnT112KsF2joNDpppfPsuPxS6cOwk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci."}}, {"model": "assets.systemuser", "pk": 44, "fields": {"name": "Nancy Gordon", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.InRlbXB1cyI.InhJYK-kSadev_OeL8065VO6arpVpq6Ns-7Qcs6WkrU", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Duis consequat dui nec nisi volutpat eleifend."}}, {"model": "assets.systemuser", "pk": 45, "fields": {"name": "Katherine Henry", "username": "lori", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 46, "fields": {"name": "Laura White", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Donec dapibus."}}, {"model": "assets.systemuser", "pk": 47, "fields": {"name": "Sandra Reed", "username": "barbara", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede."}}, {"model": "assets.systemuser", "pk": 48, "fields": {"name": "Alice Dean", "username": "louise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa."}}, {"model": "assets.systemuser", "pk": 49, "fields": {"name": "Barbara Barnes", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lcXVlIg.llRzdBaLUQqiEtGwr8xvk7hjLPiN2BUFmsxHGYDOUc4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nulla mollis molestie lorem."}}, {"model": "assets.systemuser", "pk": 50, "fields": {"name": "Ruth Rice", "username": "frances", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci."}}, {"model": "assets.systemuser", "pk": 51, "fields": {"name": "Deborah Nguyen", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.InNvZGFsZXMi.ww0wx_B7K5OjP_kI6OF9VVJd290CWCXrUsxFZ8Co_cs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.systemuser", "pk": 52, "fields": {"name": "Diane Fernandez", "username": "jacqueline", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In blandit ultrices enim."}}, {"model": "assets.systemuser", "pk": 53, "fields": {"name": "Maria Andrews", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 54, "fields": {"name": "Linda Gonzales", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Donec vitae nisi."}}, {"model": "assets.systemuser", "pk": 55, "fields": {"name": "Irene King", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hc3NhIg.0T8CCFHSvP7QtFY2vdFxkhj_w0z-ty4y2EYhGhJfOUs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nam dui."}}, {"model": "assets.systemuser", "pk": 56, "fields": {"name": "Jane Ross", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFlbmVhbiI.bmZGuIfjr5BAmIBuL3RLAL9zT2H1bTiHdZ9350HzSeg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Integer ac leo."}}, {"model": "assets.systemuser", "pk": 57, "fields": {"name": "Judith Myers", "username": "anna", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Sed accumsan felis."}}, {"model": "assets.systemuser", "pk": 58, "fields": {"name": "Melissa Price", "username": "angela", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Morbi non lectus."}}, {"model": "assets.systemuser", "pk": 59, "fields": {"name": "Kimberly Simmons", "username": "amanda", "_password": "eyJhbGciOiJIUzI1NiJ9.Imx1Y3R1cyI.HgJMJ_hzKIXE6FmvnIJpfQbY4kKS5qd1c2IJ_GxPdqQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Proin eu mi."}}, {"model": "assets.systemuser", "pk": 60, "fields": {"name": "Teresa Ford", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2wi.bGZH4pJ2wkHxRxfDvzi1ePhYmirT4ibQ-uvsullA4pE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh."}}, {"model": "assets.systemuser", "pk": 61, "fields": {"name": "Jennifer Morales", "username": "donna", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hc3NhIg.0T8CCFHSvP7QtFY2vdFxkhj_w0z-ty4y2EYhGhJfOUs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Maecenas rhoncus aliquam lacus."}}, {"model": "assets.systemuser", "pk": 62, "fields": {"name": "Jessica Miller", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9kaW8i.1qhr1N7Gn0TJEa_Q7rIWvOTqqMKwFcHXP7BomzX7J7Q", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.systemuser", "pk": 63, "fields": {"name": "Melissa Fields", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Morbi non lectus."}}, {"model": "assets.systemuser", "pk": 64, "fields": {"name": "Wanda Anderson", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Morbi vel lectus in quam fringilla rhoncus."}}, {"model": "assets.systemuser", "pk": 65, "fields": {"name": "Christine Parker", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnZhbGxpcyI.B_NDb4qHOmbgsEcxTJAb9xrXBHPzya03jDjrKhXztJU", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Vivamus vestibulum sagittis sapien."}}, {"model": "assets.systemuser", "pk": 66, "fields": {"name": "Christine Robinson", "username": "marilyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InBoYXNlbGx1cyI.Zn-tLzwjTOOALDdNqorcCv8dpUlJWwDa8PhPqRVfR7s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."}}, {"model": "assets.systemuser", "pk": 67, "fields": {"name": "Kathy Welch", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhZ2l0dGlzIg.3Bi_u95FE3rtgZOoqk8FyFU9_pncEEajQ0EqTtOvPEc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Morbi quis tortor id nulla ultrices aliquet."}}, {"model": "assets.systemuser", "pk": 68, "fields": {"name": "Carolyn Hudson", "username": "paula", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Duis consequat dui nec nisi volutpat eleifend."}}, {"model": "assets.systemuser", "pk": 69, "fields": {"name": "Elizabeth Elliott", "username": "ashley", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9ybmFyZSI.QcVdvK2RoF4RRV5r8FcqFR-4AS-lZoXezUtPh1VUnXo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nunc purus."}}, {"model": "assets.systemuser", "pk": 70, "fields": {"name": "Diane Cook", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhZ2l0dGlzIg.3Bi_u95FE3rtgZOoqk8FyFU9_pncEEajQ0EqTtOvPEc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc."}}, {"model": "assets.systemuser", "pk": 71, "fields": {"name": "Julia Green", "username": "norma", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbmd1ZSI.ZhepxP8sxBRKPXnwzbjVSMw55yeF3Ha3WBaajS2I78s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla."}}, {"model": "assets.systemuser", "pk": 72, "fields": {"name": "Irene Hayes", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXNxdWUi.8Byy0SbrQSV8S0I8M5IEyZN7NyMwHZZqjTKYALmhPvY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Mauris lacinia sapien quis libero."}}, {"model": "assets.systemuser", "pk": 73, "fields": {"name": "Karen Perkins", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5vbiI.pwMNExwLCmk9BWKxw3hxw9K9h0YRh102FvLNRKTumRs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Duis ac nibh."}}, {"model": "assets.systemuser", "pk": 74, "fields": {"name": "Laura Rodriguez", "username": "evelyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2llcyI._3rLajITSP0PWUZqt5ifjT3tU4LJNCVXI8HYoqMfR2E", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Proin eu mi."}}, {"model": "assets.systemuser", "pk": 75, "fields": {"name": "Ashley Adams", "username": "christine", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2wi.bGZH4pJ2wkHxRxfDvzi1ePhYmirT4ibQ-uvsullA4pE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 76, "fields": {"name": "Elizabeth Lawrence", "username": "lori", "_password": "eyJhbGciOiJIUzI1NiJ9.InJpc3VzIg.X2SL1k_46FoTAmU-hg5tLW8qbcvqcFfgLJSAPQrLZZA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Donec dapibus."}}, {"model": "assets.systemuser", "pk": 77, "fields": {"name": "Patricia Peters", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Donec ut dolor."}}, {"model": "assets.systemuser", "pk": 78, "fields": {"name": "Sandra Bailey", "username": "kathryn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla."}}, {"model": "assets.systemuser", "pk": 79, "fields": {"name": "Doris Cook", "username": "brenda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvYm9ydGlzIg.RKcewrE2glcmJtRtDpTt8WptvFfwUjhUDMlcdl1Shuw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nulla ac enim."}}, {"model": "assets.systemuser", "pk": 80, "fields": {"name": "Alice Bell", "username": "donna", "_password": "eyJhbGciOiJIUzI1NiJ9.ImltcGVyZGlldCI._XQV1N-Rnln6cTJCYdC29156Dpw77ZWlw3qvZlLQ0zY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Pellentesque ultrices mattis odio."}}, {"model": "assets.systemuser", "pk": 81, "fields": {"name": "Debra Alvarez", "username": "joan", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlhY3VsaXMi._s5XG4x4ntDRnnbi38JeFne1fvF3h3f9nQJRUGL_vq0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.systemuser", "pk": 82, "fields": {"name": "Tina Harrison", "username": "janet", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Y3RvciI.hSbx7NEdaQmgntQbSQ_Lx9tUcIj8U1eRls86nyml8Zc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nam nulla."}}, {"model": "assets.systemuser", "pk": 83, "fields": {"name": "Theresa Little", "username": "annie", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Etiam vel augue."}}, {"model": "assets.systemuser", "pk": 84, "fields": {"name": "Jacqueline Hughes", "username": "janet", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lcXVlIg.llRzdBaLUQqiEtGwr8xvk7hjLPiN2BUFmsxHGYDOUc4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.systemuser", "pk": 85, "fields": {"name": "Diana Bailey", "username": "norma", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Donec dapibus."}}, {"model": "assets.systemuser", "pk": 86, "fields": {"name": "Lillian King", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbnRlcyI.U9-mPLi3PtAqPA0X37T_EcxCjKiiMYB8waKn_zTTLqI", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Morbi non quam nec dui luctus rutrum."}}, {"model": "assets.systemuser", "pk": 87, "fields": {"name": "Lori Allen", "username": "ruth", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In eleifend quam a odio."}}, {"model": "assets.systemuser", "pk": 88, "fields": {"name": "Marilyn Taylor", "username": "lillian", "_password": "eyJhbGciOiJIUzI1NiJ9.InZvbHV0cGF0Ig.F7uCpzruZ4ZGBU3VNWStgVJgh0kXl9bHDicT6aRqSys", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis."}}, {"model": "assets.systemuser", "pk": 89, "fields": {"name": "Norma Rice", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hc3NhIg.0T8CCFHSvP7QtFY2vdFxkhj_w0z-ty4y2EYhGhJfOUs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.systemuser", "pk": 90, "fields": {"name": "Emily Porter", "username": "annie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In eleifend quam a odio."}}, {"model": "assets.systemuser", "pk": 91, "fields": {"name": "Pamela Diaz", "username": "kathleen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Proin eu mi."}}, {"model": "assets.systemuser", "pk": 92, "fields": {"name": "Julia Harrison", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXNxdWUi.8Byy0SbrQSV8S0I8M5IEyZN7NyMwHZZqjTKYALmhPvY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nulla facilisi."}}, {"model": "assets.systemuser", "pk": 93, "fields": {"name": "Sharon Gordon", "username": "mary", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Pellentesque at nulla."}}, {"model": "assets.systemuser", "pk": 94, "fields": {"name": "Judy Sullivan", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlZGUi.VNfxhauAGiZelQ34CO0YMVbRtgnIiH5Z-vY1jjYXhWA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In eleifend quam a odio."}}, {"model": "assets.systemuser", "pk": 95, "fields": {"name": "Karen Green", "username": "heather", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem."}}, {"model": "assets.systemuser", "pk": 96, "fields": {"name": "Jacqueline Matthews", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aSI.AYqnix4dp06WLJ645L4MAveLycKVrZSyNjJnIq0fU2g", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Etiam vel augue."}}, {"model": "assets.systemuser", "pk": 97, "fields": {"name": "Ashley Flores", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh."}}, {"model": "assets.systemuser", "pk": 98, "fields": {"name": "Theresa Collins", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aSI.AYqnix4dp06WLJ645L4MAveLycKVrZSyNjJnIq0fU2g", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Curabitur gravida nisi at nibh."}}, {"model": "assets.systemuser", "pk": 99, "fields": {"name": "Michelle Hunter", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Duis aliquam convallis nunc."}}, {"model": "assets.systemuser", "pk": 100, "fields": {"name": "Judy Martin", "username": "judy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2ki.n-Lu5aSHiUvxHk4WAgVl5rBKooF4O9p22BV1JS22TCc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-02T14:58:51Z", "created_by": "Fake", "comment": "Etiam faucibus cursus urna."}}, {"model": "assets.assetgroup", "pk": 1, "fields": {"name": "Default", "created_by": "", "date_created": "2016-11-02T14:51:53Z", "comment": "Default asset group", "system_users": []}}, {"model": "assets.assetgroup", "pk": 2, "fields": {"name": "Kimberly Burke", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Ut tellus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 3, "fields": {"name": "Pamela Pierce", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi non quam nec dui luctus rutrum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 4, "fields": {"name": "Lawrence Boyd", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 5, "fields": {"name": "Bonnie Miller", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 6, "fields": {"name": "Melissa Nichols", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Vestibulum rutrum rutrum neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 7, "fields": {"name": "Anne Berry", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Praesent blandit lacinia erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 8, "fields": {"name": "Catherine Snyder", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 9, "fields": {"name": "Sara Harris", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Proin at turpis a pede posuere nonummy.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 10, "fields": {"name": "Brenda Day", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Aenean fermentum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 11, "fields": {"name": "Betty Porter", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 12, "fields": {"name": "Theresa Holmes", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 13, "fields": {"name": "Angela Allen", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Quisque porta volutpat erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 14, "fields": {"name": "Robin Martin", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi non quam nec dui luctus rutrum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 15, "fields": {"name": "Ruby Wallace", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 16, "fields": {"name": "Michelle Nichols", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Vestibulum rutrum rutrum neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 17, "fields": {"name": "Lillian Torres", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 18, "fields": {"name": "Catherine Gonzalez", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Etiam justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 19, "fields": {"name": "Denise Riley", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nulla ut erat id mauris vulputate elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 20, "fields": {"name": "Jean Jacobs", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Etiam pretium iaculis justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 21, "fields": {"name": "Lillian Burke", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "In eleifend quam a odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 22, "fields": {"name": "Jennifer Fernandez", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Praesent blandit lacinia erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 23, "fields": {"name": "Ann Romero", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Praesent id massa id nisl venenatis lacinia.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 24, "fields": {"name": "Michelle Spencer", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 25, "fields": {"name": "Emily Russell", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Donec ut dolor.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 26, "fields": {"name": "Angela Peters", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Proin at turpis a pede posuere nonummy.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 27, "fields": {"name": "Ashley Sanders", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nulla facilisi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 28, "fields": {"name": "Laura King", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Ut at dolor quis odio consequat varius.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 29, "fields": {"name": "Katherine Cooper", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Maecenas rhoncus aliquam lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 30, "fields": {"name": "Alice Lane", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Pellentesque ultrices mattis odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 31, "fields": {"name": "Diana Perez", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Sed ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 32, "fields": {"name": "Nicole Gray", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Aenean sit amet justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 33, "fields": {"name": "Wanda Reed", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nunc rhoncus dui vel sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 34, "fields": {"name": "Maria Sanders", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Mauris sit amet eros.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 35, "fields": {"name": "Sandra Harris", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Curabitur gravida nisi at nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 36, "fields": {"name": "Rachel Sims", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 37, "fields": {"name": "Annie Hawkins", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 38, "fields": {"name": "Marilyn Fox", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nam dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 39, "fields": {"name": "Betty Rodriguez", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Aliquam non mauris.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 40, "fields": {"name": "Rebecca Davis", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 41, "fields": {"name": "Linda Parker", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi porttitor lorem id ligula.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 42, "fields": {"name": "Helen Bennett", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nam dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 43, "fields": {"name": "Janet Myers", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "In blandit ultrices enim.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 44, "fields": {"name": "Phyllis Gordon", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 45, "fields": {"name": "Cheryl Reyes", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 46, "fields": {"name": "Diane Lewis", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 47, "fields": {"name": "Mildred Morgan", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Praesent id massa id nisl venenatis lacinia.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 48, "fields": {"name": "Marie Hayes", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nullam porttitor lacus at turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 49, "fields": {"name": "Amanda Baker", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Proin risus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 50, "fields": {"name": "Amy Miller", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Integer non velit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 51, "fields": {"name": "Dorothy Crawford", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Praesent lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 52, "fields": {"name": "Sara Fowler", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 53, "fields": {"name": "Bonnie Thompson", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Etiam faucibus cursus urna.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 54, "fields": {"name": "Christine Watson", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "In blandit ultrices enim.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 55, "fields": {"name": "Jessica Fox", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Integer a nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 56, "fields": {"name": "Sara Barnes", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 57, "fields": {"name": "Judy Rose", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Fusce posuere felis sed lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 58, "fields": {"name": "Katherine Matthews", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Pellentesque at nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 59, "fields": {"name": "Mary Sanders", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 60, "fields": {"name": "Martha Ruiz", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 61, "fields": {"name": "Ann Fowler", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Phasellus sit amet erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 62, "fields": {"name": "Ruth Clark", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Duis mattis egestas metus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 63, "fields": {"name": "Betty Wilson", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 64, "fields": {"name": "Doris Dunn", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Aenean lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 65, "fields": {"name": "Paula Phillips", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Pellentesque ultrices mattis odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 66, "fields": {"name": "Laura Crawford", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Integer ac neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 67, "fields": {"name": "Irene Sims", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Suspendisse potenti.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 68, "fields": {"name": "Brenda Fields", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Donec semper sapien a libero.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 69, "fields": {"name": "Judith Martin", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nulla ut erat id mauris vulputate elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 70, "fields": {"name": "Cynthia Morrison", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Aenean fermentum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 71, "fields": {"name": "Catherine Henry", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Integer a nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 72, "fields": {"name": "Christine Ford", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nullam varius.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 73, "fields": {"name": "Louise Greene", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 74, "fields": {"name": "Mary Robertson", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Suspendisse potenti.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 75, "fields": {"name": "Nicole Nelson", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 76, "fields": {"name": "Deborah Turner", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 77, "fields": {"name": "Lori Jacobs", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Proin at turpis a pede posuere nonummy.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 78, "fields": {"name": "Norma Bishop", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Etiam faucibus cursus urna.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 79, "fields": {"name": "Joyce Hayes", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 80, "fields": {"name": "Paula Richards", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nulla tempus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 81, "fields": {"name": "Debra Brooks", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 82, "fields": {"name": "Janice Freeman", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "In eleifend quam a odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 83, "fields": {"name": "Marie Gardner", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Donec quis orci eget orci vehicula condimentum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 84, "fields": {"name": "Emily Weaver", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 85, "fields": {"name": "Sara Diaz", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 86, "fields": {"name": "Andrea Austin", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Praesent lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 87, "fields": {"name": "Andrea Daniels", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Sed ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 88, "fields": {"name": "Mary George", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nunc purus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 89, "fields": {"name": "Mary Pierce", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Pellentesque viverra pede ac diam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 90, "fields": {"name": "Melissa Harrison", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Nulla ut erat id mauris vulputate elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 91, "fields": {"name": "Wanda Gonzalez", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Duis aliquam convallis nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 92, "fields": {"name": "Gloria Franklin", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Donec quis orci eget orci vehicula condimentum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 93, "fields": {"name": "Martha Bailey", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Etiam faucibus cursus urna.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 94, "fields": {"name": "Rose Gardner", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Duis at velit eu est congue elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 95, "fields": {"name": "Cynthia Shaw", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Curabitur gravida nisi at nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 96, "fields": {"name": "Phyllis White", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 97, "fields": {"name": "Theresa Edwards", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Suspendisse potenti.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 98, "fields": {"name": "Tina Mcdonald", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 99, "fields": {"name": "Joan Alvarez", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 100, "fields": {"name": "Marilyn Black", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Duis at velit eu est congue elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 101, "fields": {"name": "Paula Collins", "created_by": "Fake", "date_created": "2016-11-02T14:58:50Z", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "system_users": []}}, {"model": "assets.asset", "pk": 1, "fields": {"ip": "0.0.0.0", "other_ip": null, "remote_card_ip": null, "hostname": "irene84", "port": 22, "admin_user": 41, "idc": 61, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:51Z", "comment": "", "groups": [17, 28, 45], "system_users": [12, 55, 87], "tags": []}}, {"model": "assets.asset", "pk": 2, "fields": {"ip": "1.1.1.1", "other_ip": null, "remote_card_ip": null, "hostname": "cheryl79", "port": 22, "admin_user": 7, "idc": 37, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:51Z", "comment": "", "groups": [43, 58, 81], "system_users": [40, 71, 74], "tags": []}}, {"model": "assets.asset", "pk": 3, "fields": {"ip": "2.2.2.2", "other_ip": null, "remote_card_ip": null, "hostname": "sarah67", "port": 22, "admin_user": 11, "idc": 22, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:51Z", "comment": "", "groups": [8, 69, 82], "system_users": [6, 30, 59], "tags": []}}, {"model": "assets.asset", "pk": 4, "fields": {"ip": "3.3.3.3", "other_ip": null, "remote_card_ip": null, "hostname": "sandra74", "port": 22, "admin_user": 19, "idc": 37, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:51Z", "comment": "", "groups": [21, 89, 101], "system_users": [36, 59, 80], "tags": []}}, {"model": "assets.asset", "pk": 5, "fields": {"ip": "4.4.4.4", "other_ip": null, "remote_card_ip": null, "hostname": "jennifer72", "port": 22, "admin_user": 80, "idc": 76, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:51Z", "comment": "", "groups": [30, 83, 88], "system_users": [15, 41, 77], "tags": []}}, {"model": "assets.asset", "pk": 6, "fields": {"ip": "5.5.5.5", "other_ip": null, "remote_card_ip": null, "hostname": "pamela88", "port": 22, "admin_user": 48, "idc": 3, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:51Z", "comment": "", "groups": [2, 21, 51], "system_users": [20, 48, 82], "tags": []}}, {"model": "assets.asset", "pk": 7, "fields": {"ip": "6.6.6.6", "other_ip": null, "remote_card_ip": null, "hostname": "lillian93", "port": 22, "admin_user": 71, "idc": 81, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:51Z", "comment": "", "groups": [18, 29, 71], "system_users": [21, 41, 93], "tags": []}}, {"model": "assets.asset", "pk": 8, "fields": {"ip": "7.7.7.7", "other_ip": null, "remote_card_ip": null, "hostname": "maria77", "port": 22, "admin_user": 38, "idc": 87, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:51Z", "comment": "", "groups": [16, 25, 95], "system_users": [53, 89], "tags": []}}, {"model": "assets.asset", "pk": 9, "fields": {"ip": "8.8.8.8", "other_ip": null, "remote_card_ip": null, "hostname": "lillian89", "port": 22, "admin_user": 64, "idc": 84, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [45, 65, 69], "system_users": [3, 53, 78], "tags": []}}, {"model": "assets.asset", "pk": 10, "fields": {"ip": "9.9.9.9", "other_ip": null, "remote_card_ip": null, "hostname": "martha66", "port": 22, "admin_user": 97, "idc": 28, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [3, 42, 56], "system_users": [24, 26, 58], "tags": []}}, {"model": "assets.asset", "pk": 11, "fields": {"ip": "10.10.10.10", "other_ip": null, "remote_card_ip": null, "hostname": "jessica81", "port": 22, "admin_user": 83, "idc": 92, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [19, 63, 69], "system_users": [4, 22, 99], "tags": []}}, {"model": "assets.asset", "pk": 12, "fields": {"ip": "11.11.11.11", "other_ip": null, "remote_card_ip": null, "hostname": "wanda77", "port": 22, "admin_user": 86, "idc": 40, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [47, 71, 87], "system_users": [25, 55, 57], "tags": []}}, {"model": "assets.asset", "pk": 13, "fields": {"ip": "12.12.12.12", "other_ip": null, "remote_card_ip": null, "hostname": "norma77", "port": 22, "admin_user": 80, "idc": 50, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [70, 84, 86], "system_users": [46, 57, 59], "tags": []}}, {"model": "assets.asset", "pk": 14, "fields": {"ip": "13.13.13.13", "other_ip": null, "remote_card_ip": null, "hostname": "carol75", "port": 22, "admin_user": 73, "idc": 86, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [68, 81, 91], "system_users": [27, 36, 96], "tags": []}}, {"model": "assets.asset", "pk": 15, "fields": {"ip": "14.14.14.14", "other_ip": null, "remote_card_ip": null, "hostname": "norma66", "port": 22, "admin_user": 14, "idc": 16, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [8, 13, 86], "system_users": [6, 63, 84], "tags": []}}, {"model": "assets.asset", "pk": 16, "fields": {"ip": "15.15.15.15", "other_ip": null, "remote_card_ip": null, "hostname": "janet73", "port": 22, "admin_user": 50, "idc": 47, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [3, 71, 97], "system_users": [24, 64, 65], "tags": []}}, {"model": "assets.asset", "pk": 17, "fields": {"ip": "16.16.16.16", "other_ip": null, "remote_card_ip": null, "hostname": "andrea83", "port": 22, "admin_user": 5, "idc": 68, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [17, 39, 50], "system_users": [36, 95, 98], "tags": []}}, {"model": "assets.asset", "pk": 18, "fields": {"ip": "17.17.17.17", "other_ip": null, "remote_card_ip": null, "hostname": "doris73", "port": 22, "admin_user": 94, "idc": 31, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [11, 44, 97], "system_users": [45, 54, 90], "tags": []}}, {"model": "assets.asset", "pk": 19, "fields": {"ip": "18.18.18.18", "other_ip": null, "remote_card_ip": null, "hostname": "katherine68", "port": 22, "admin_user": 14, "idc": 67, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [7, 65, 99], "system_users": [41, 55, 80], "tags": []}}, {"model": "assets.asset", "pk": 20, "fields": {"ip": "19.19.19.19", "other_ip": null, "remote_card_ip": null, "hostname": "elizabeth80", "port": 22, "admin_user": 53, "idc": 92, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [58, 68, 69], "system_users": [24, 68, 92], "tags": []}}, {"model": "assets.asset", "pk": 21, "fields": {"ip": "20.20.20.20", "other_ip": null, "remote_card_ip": null, "hostname": "mary82", "port": 22, "admin_user": 34, "idc": 19, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [78, 85, 94], "system_users": [6, 26, 30], "tags": []}}, {"model": "assets.asset", "pk": 22, "fields": {"ip": "21.21.21.21", "other_ip": null, "remote_card_ip": null, "hostname": "christina69", "port": 22, "admin_user": 93, "idc": 82, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:52Z", "comment": "", "groups": [17, 21, 51], "system_users": [16, 39, 50], "tags": []}}, {"model": "assets.asset", "pk": 23, "fields": {"ip": "22.22.22.22", "other_ip": null, "remote_card_ip": null, "hostname": "jean78", "port": 22, "admin_user": 95, "idc": 51, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [31, 64, 90], "system_users": [57, 58, 73], "tags": []}}, {"model": "assets.asset", "pk": 24, "fields": {"ip": "23.23.23.23", "other_ip": null, "remote_card_ip": null, "hostname": "bonnie94", "port": 22, "admin_user": 92, "idc": 99, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [31, 58, 62], "system_users": [9, 49, 81], "tags": []}}, {"model": "assets.asset", "pk": 25, "fields": {"ip": "24.24.24.24", "other_ip": null, "remote_card_ip": null, "hostname": "carolyn67", "port": 22, "admin_user": 30, "idc": 55, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [6, 58, 87], "system_users": [12, 76, 92], "tags": []}}, {"model": "assets.asset", "pk": 26, "fields": {"ip": "25.25.25.25", "other_ip": null, "remote_card_ip": null, "hostname": "judith94", "port": 22, "admin_user": 30, "idc": 80, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [11, 22, 73], "system_users": [10, 25, 75], "tags": []}}, {"model": "assets.asset", "pk": 27, "fields": {"ip": "26.26.26.26", "other_ip": null, "remote_card_ip": null, "hostname": "wanda78", "port": 22, "admin_user": 69, "idc": 58, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [12, 13, 88], "system_users": [53, 74, 100], "tags": []}}, {"model": "assets.asset", "pk": 28, "fields": {"ip": "27.27.27.27", "other_ip": null, "remote_card_ip": null, "hostname": "sara90", "port": 22, "admin_user": 73, "idc": 14, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [1, 8, 95], "system_users": [71, 83, 96], "tags": []}}, {"model": "assets.asset", "pk": 29, "fields": {"ip": "28.28.28.28", "other_ip": null, "remote_card_ip": null, "hostname": "lois87", "port": 22, "admin_user": 75, "idc": 84, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [22, 60, 99], "system_users": [3, 68], "tags": []}}, {"model": "assets.asset", "pk": 30, "fields": {"ip": "29.29.29.29", "other_ip": null, "remote_card_ip": null, "hostname": "barbara78", "port": 22, "admin_user": 24, "idc": 29, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [65, 79, 88], "system_users": [33, 53, 87], "tags": []}}, {"model": "assets.asset", "pk": 31, "fields": {"ip": "30.30.30.30", "other_ip": null, "remote_card_ip": null, "hostname": "phyllis71", "port": 22, "admin_user": 93, "idc": 88, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [9, 51, 95], "system_users": [10, 21, 67], "tags": []}}, {"model": "assets.asset", "pk": 32, "fields": {"ip": "31.31.31.31", "other_ip": null, "remote_card_ip": null, "hostname": "barbara87", "port": 22, "admin_user": 14, "idc": 37, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [39, 46, 66], "system_users": [31, 41, 58], "tags": []}}, {"model": "assets.asset", "pk": 33, "fields": {"ip": "32.32.32.32", "other_ip": null, "remote_card_ip": null, "hostname": "donna76", "port": 22, "admin_user": 30, "idc": 86, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [42, 54, 57], "system_users": [35, 84, 94], "tags": []}}, {"model": "assets.asset", "pk": 34, "fields": {"ip": "33.33.33.33", "other_ip": null, "remote_card_ip": null, "hostname": "denise78", "port": 22, "admin_user": 77, "idc": 80, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [36, 63, 79], "system_users": [25, 45, 83], "tags": []}}, {"model": "assets.asset", "pk": 35, "fields": {"ip": "34.34.34.34", "other_ip": null, "remote_card_ip": null, "hostname": "catherine86", "port": 22, "admin_user": 66, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [35, 62, 98], "system_users": [48, 60, 82], "tags": []}}, {"model": "assets.asset", "pk": 36, "fields": {"ip": "35.35.35.35", "other_ip": null, "remote_card_ip": null, "hostname": "cynthia69", "port": 22, "admin_user": 61, "idc": 16, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [40, 57, 76], "system_users": [5, 29, 96], "tags": []}}, {"model": "assets.asset", "pk": 37, "fields": {"ip": "36.36.36.36", "other_ip": null, "remote_card_ip": null, "hostname": "virginia92", "port": 22, "admin_user": 1, "idc": 77, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:53Z", "comment": "", "groups": [80, 83, 101], "system_users": [14, 37, 88], "tags": []}}, {"model": "assets.asset", "pk": 38, "fields": {"ip": "37.37.37.37", "other_ip": null, "remote_card_ip": null, "hostname": "barbara67", "port": 22, "admin_user": 29, "idc": 4, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [3, 79, 85], "system_users": [30, 51, 81], "tags": []}}, {"model": "assets.asset", "pk": 39, "fields": {"ip": "38.38.38.38", "other_ip": null, "remote_card_ip": null, "hostname": "ashley76", "port": 22, "admin_user": 8, "idc": 56, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [36, 71, 72], "system_users": [15, 40, 99], "tags": []}}, {"model": "assets.asset", "pk": 40, "fields": {"ip": "39.39.39.39", "other_ip": null, "remote_card_ip": null, "hostname": "jean79", "port": 22, "admin_user": 7, "idc": 8, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [21, 26, 72], "system_users": [21, 33, 72], "tags": []}}, {"model": "assets.asset", "pk": 41, "fields": {"ip": "40.40.40.40", "other_ip": null, "remote_card_ip": null, "hostname": "andrea81", "port": 22, "admin_user": 15, "idc": 62, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [20, 60, 82], "system_users": [41, 51, 52], "tags": []}}, {"model": "assets.asset", "pk": 42, "fields": {"ip": "41.41.41.41", "other_ip": null, "remote_card_ip": null, "hostname": "maria87", "port": 22, "admin_user": 57, "idc": 51, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [7, 17, 45], "system_users": [50, 51, 53], "tags": []}}, {"model": "assets.asset", "pk": 43, "fields": {"ip": "42.42.42.42", "other_ip": null, "remote_card_ip": null, "hostname": "shirley64", "port": 22, "admin_user": 4, "idc": 86, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [40, 85, 86], "system_users": [80, 86, 94], "tags": []}}, {"model": "assets.asset", "pk": 44, "fields": {"ip": "43.43.43.43", "other_ip": null, "remote_card_ip": null, "hostname": "heather89", "port": 22, "admin_user": 71, "idc": 99, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [27, 51, 60], "system_users": [19, 61, 74], "tags": []}}, {"model": "assets.asset", "pk": 45, "fields": {"ip": "44.44.44.44", "other_ip": null, "remote_card_ip": null, "hostname": "heather93", "port": 22, "admin_user": 44, "idc": 88, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [13, 75, 96], "system_users": [20, 44, 71], "tags": []}}, {"model": "assets.asset", "pk": 46, "fields": {"ip": "45.45.45.45", "other_ip": null, "remote_card_ip": null, "hostname": "phyllis94", "port": 22, "admin_user": 80, "idc": 55, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [3, 19, 37], "system_users": [40, 46, 94], "tags": []}}, {"model": "assets.asset", "pk": 47, "fields": {"ip": "46.46.46.46", "other_ip": null, "remote_card_ip": null, "hostname": "joyce93", "port": 22, "admin_user": 2, "idc": 22, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [7, 53, 66], "system_users": [28, 40, 61], "tags": []}}, {"model": "assets.asset", "pk": 48, "fields": {"ip": "47.47.47.47", "other_ip": null, "remote_card_ip": null, "hostname": "donna64", "port": 22, "admin_user": 47, "idc": 58, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [9, 21, 59], "system_users": [13, 28, 91], "tags": []}}, {"model": "assets.asset", "pk": 49, "fields": {"ip": "48.48.48.48", "other_ip": null, "remote_card_ip": null, "hostname": "cynthia70", "port": 22, "admin_user": 35, "idc": 27, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [18, 51, 58], "system_users": [1, 44, 64], "tags": []}}, {"model": "assets.asset", "pk": 50, "fields": {"ip": "49.49.49.49", "other_ip": null, "remote_card_ip": null, "hostname": "janet78", "port": 22, "admin_user": 62, "idc": 27, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [16, 35, 96], "system_users": [8, 50, 80], "tags": []}}, {"model": "assets.asset", "pk": 51, "fields": {"ip": "50.50.50.50", "other_ip": null, "remote_card_ip": null, "hostname": "joyce80", "port": 22, "admin_user": 14, "idc": 14, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:54Z", "comment": "", "groups": [17, 69, 72], "system_users": [1, 44, 70], "tags": []}}, {"model": "assets.asset", "pk": 52, "fields": {"ip": "51.51.51.51", "other_ip": null, "remote_card_ip": null, "hostname": "annie71", "port": 22, "admin_user": 81, "idc": 12, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [2, 47, 86], "system_users": [45, 50, 54], "tags": []}}, {"model": "assets.asset", "pk": 53, "fields": {"ip": "52.52.52.52", "other_ip": null, "remote_card_ip": null, "hostname": "teresa68", "port": 22, "admin_user": 37, "idc": 98, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [25, 30, 79], "system_users": [22, 49, 61], "tags": []}}, {"model": "assets.asset", "pk": 54, "fields": {"ip": "53.53.53.53", "other_ip": null, "remote_card_ip": null, "hostname": "theresa88", "port": 22, "admin_user": 52, "idc": 99, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [47, 79], "system_users": [40, 55, 67], "tags": []}}, {"model": "assets.asset", "pk": 55, "fields": {"ip": "54.54.54.54", "other_ip": null, "remote_card_ip": null, "hostname": "denise80", "port": 22, "admin_user": 14, "idc": 67, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [31, 45, 94], "system_users": [7, 21, 97], "tags": []}}, {"model": "assets.asset", "pk": 56, "fields": {"ip": "55.55.55.55", "other_ip": null, "remote_card_ip": null, "hostname": "emily79", "port": 22, "admin_user": 86, "idc": 14, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [4, 65, 101], "system_users": [3, 40, 61], "tags": []}}, {"model": "assets.asset", "pk": 57, "fields": {"ip": "56.56.56.56", "other_ip": null, "remote_card_ip": null, "hostname": "maria69", "port": 22, "admin_user": 7, "idc": 80, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [58, 64, 75], "system_users": [8, 51, 87], "tags": []}}, {"model": "assets.asset", "pk": 58, "fields": {"ip": "57.57.57.57", "other_ip": null, "remote_card_ip": null, "hostname": "paula85", "port": 22, "admin_user": 88, "idc": 1, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [25, 40, 99], "system_users": [15, 29, 74], "tags": []}}, {"model": "assets.asset", "pk": 59, "fields": {"ip": "58.58.58.58", "other_ip": null, "remote_card_ip": null, "hostname": "judy78", "port": 22, "admin_user": 34, "idc": 91, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [22, 52, 61], "system_users": [15, 73, 99], "tags": []}}, {"model": "assets.asset", "pk": 60, "fields": {"ip": "59.59.59.59", "other_ip": null, "remote_card_ip": null, "hostname": "kathy86", "port": 22, "admin_user": 32, "idc": 37, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [18, 51, 84], "system_users": [2, 5, 67], "tags": []}}, {"model": "assets.asset", "pk": 61, "fields": {"ip": "60.60.60.60", "other_ip": null, "remote_card_ip": null, "hostname": "laura65", "port": 22, "admin_user": 16, "idc": 17, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [9, 33, 34], "system_users": [34, 70, 77], "tags": []}}, {"model": "assets.asset", "pk": 62, "fields": {"ip": "61.61.61.61", "other_ip": null, "remote_card_ip": null, "hostname": "dorothy80", "port": 22, "admin_user": 85, "idc": 75, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [2, 30, 60], "system_users": [8, 10, 97], "tags": []}}, {"model": "assets.asset", "pk": 63, "fields": {"ip": "62.62.62.62", "other_ip": null, "remote_card_ip": null, "hostname": "rachel89", "port": 22, "admin_user": 49, "idc": 88, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [39, 71, 79], "system_users": [16, 38, 55], "tags": []}}, {"model": "assets.asset", "pk": 64, "fields": {"ip": "63.63.63.63", "other_ip": null, "remote_card_ip": null, "hostname": "phyllis63", "port": 22, "admin_user": 88, "idc": 72, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [63, 67, 76], "system_users": [23, 69, 99], "tags": []}}, {"model": "assets.asset", "pk": 65, "fields": {"ip": "64.64.64.64", "other_ip": null, "remote_card_ip": null, "hostname": "evelyn88", "port": 22, "admin_user": 9, "idc": 39, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:55Z", "comment": "", "groups": [24, 38, 49], "system_users": [6, 7, 91], "tags": []}}, {"model": "assets.asset", "pk": 66, "fields": {"ip": "65.65.65.65", "other_ip": null, "remote_card_ip": null, "hostname": "margaret82", "port": 22, "admin_user": 59, "idc": 12, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [52, 54, 55], "system_users": [1, 2], "tags": []}}, {"model": "assets.asset", "pk": 67, "fields": {"ip": "66.66.66.66", "other_ip": null, "remote_card_ip": null, "hostname": "ashley75", "port": 22, "admin_user": 35, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [18, 42, 101], "system_users": [51, 58, 69], "tags": []}}, {"model": "assets.asset", "pk": 68, "fields": {"ip": "67.67.67.67", "other_ip": null, "remote_card_ip": null, "hostname": "lori81", "port": 22, "admin_user": 14, "idc": 51, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [11, 37, 43], "system_users": [51, 60, 81], "tags": []}}, {"model": "assets.asset", "pk": 69, "fields": {"ip": "68.68.68.68", "other_ip": null, "remote_card_ip": null, "hostname": "donna87", "port": 22, "admin_user": 31, "idc": 2, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [24, 34, 82], "system_users": [20, 54, 69], "tags": []}}, {"model": "assets.asset", "pk": 70, "fields": {"ip": "69.69.69.69", "other_ip": null, "remote_card_ip": null, "hostname": "sharon90", "port": 22, "admin_user": 22, "idc": 92, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [18, 54, 92], "system_users": [49, 81, 84], "tags": []}}, {"model": "assets.asset", "pk": 71, "fields": {"ip": "70.70.70.70", "other_ip": null, "remote_card_ip": null, "hostname": "heather86", "port": 22, "admin_user": 7, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [7, 16, 53], "system_users": [16, 17, 100], "tags": []}}, {"model": "assets.asset", "pk": 72, "fields": {"ip": "71.71.71.71", "other_ip": null, "remote_card_ip": null, "hostname": "kathryn85", "port": 22, "admin_user": 9, "idc": 63, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [9, 60, 79], "system_users": [3, 15, 23], "tags": []}}, {"model": "assets.asset", "pk": 73, "fields": {"ip": "72.72.72.72", "other_ip": null, "remote_card_ip": null, "hostname": "tammy79", "port": 22, "admin_user": 21, "idc": 99, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [2, 46, 63], "system_users": [20, 41, 80], "tags": []}}, {"model": "assets.asset", "pk": 74, "fields": {"ip": "73.73.73.73", "other_ip": null, "remote_card_ip": null, "hostname": "theresa86", "port": 22, "admin_user": 65, "idc": 85, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [73, 94, 99], "system_users": [16, 52, 100], "tags": []}}, {"model": "assets.asset", "pk": 75, "fields": {"ip": "74.74.74.74", "other_ip": null, "remote_card_ip": null, "hostname": "robin80", "port": 22, "admin_user": 22, "idc": 24, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [13, 14, 73], "system_users": [31, 74, 91], "tags": []}}, {"model": "assets.asset", "pk": 76, "fields": {"ip": "75.75.75.75", "other_ip": null, "remote_card_ip": null, "hostname": "janet79", "port": 22, "admin_user": 27, "idc": 87, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [16, 25, 51], "system_users": [8, 34, 85], "tags": []}}, {"model": "assets.asset", "pk": 77, "fields": {"ip": "76.76.76.76", "other_ip": null, "remote_card_ip": null, "hostname": "jane66", "port": 22, "admin_user": 52, "idc": 46, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [21, 24, 29], "system_users": [38, 42, 75], "tags": []}}, {"model": "assets.asset", "pk": 78, "fields": {"ip": "77.77.77.77", "other_ip": null, "remote_card_ip": null, "hostname": "nancy86", "port": 22, "admin_user": 89, "idc": 20, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [6, 30, 77], "system_users": [2, 82, 95], "tags": []}}, {"model": "assets.asset", "pk": 79, "fields": {"ip": "78.78.78.78", "other_ip": null, "remote_card_ip": null, "hostname": "cynthia90", "port": 22, "admin_user": 29, "idc": 41, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [5, 43, 95], "system_users": [25, 41, 67], "tags": []}}, {"model": "assets.asset", "pk": 80, "fields": {"ip": "79.79.79.79", "other_ip": null, "remote_card_ip": null, "hostname": "heather63", "port": 22, "admin_user": 1, "idc": 35, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:56Z", "comment": "", "groups": [25, 47, 91], "system_users": [17, 83, 88], "tags": []}}, {"model": "assets.asset", "pk": 81, "fields": {"ip": "80.80.80.80", "other_ip": null, "remote_card_ip": null, "hostname": "ruth72", "port": 22, "admin_user": 58, "idc": 41, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [22, 56, 84], "system_users": [13, 85, 93], "tags": []}}, {"model": "assets.asset", "pk": 82, "fields": {"ip": "81.81.81.81", "other_ip": null, "remote_card_ip": null, "hostname": "wanda71", "port": 22, "admin_user": 11, "idc": 40, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [27, 73, 96], "system_users": [36, 87, 89], "tags": []}}, {"model": "assets.asset", "pk": 83, "fields": {"ip": "82.82.82.82", "other_ip": null, "remote_card_ip": null, "hostname": "mildred76", "port": 22, "admin_user": 55, "idc": 66, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [28, 53, 64], "system_users": [7, 21, 36], "tags": []}}, {"model": "assets.asset", "pk": 84, "fields": {"ip": "83.83.83.83", "other_ip": null, "remote_card_ip": null, "hostname": "rose66", "port": 22, "admin_user": 96, "idc": 95, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [7, 54, 95], "system_users": [53, 85, 86], "tags": []}}, {"model": "assets.asset", "pk": 85, "fields": {"ip": "84.84.84.84", "other_ip": null, "remote_card_ip": null, "hostname": "deborah75", "port": 22, "admin_user": 36, "idc": 90, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [1, 13, 92], "system_users": [52, 61, 62], "tags": []}}, {"model": "assets.asset", "pk": 86, "fields": {"ip": "85.85.85.85", "other_ip": null, "remote_card_ip": null, "hostname": "andrea73", "port": 22, "admin_user": 62, "idc": 70, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [64, 73, 94], "system_users": [21, 87, 90], "tags": []}}, {"model": "assets.asset", "pk": 87, "fields": {"ip": "86.86.86.86", "other_ip": null, "remote_card_ip": null, "hostname": "lois90", "port": 22, "admin_user": 1, "idc": 73, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [10, 51, 73], "system_users": [37, 52], "tags": []}}, {"model": "assets.asset", "pk": 88, "fields": {"ip": "87.87.87.87", "other_ip": null, "remote_card_ip": null, "hostname": "sharon68", "port": 22, "admin_user": 50, "idc": 29, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [43, 67, 97], "system_users": [26, 63, 74], "tags": []}}, {"model": "assets.asset", "pk": 89, "fields": {"ip": "88.88.88.88", "other_ip": null, "remote_card_ip": null, "hostname": "nicole90", "port": 22, "admin_user": 53, "idc": 57, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [13, 52, 88], "system_users": [8, 63, 91], "tags": []}}, {"model": "assets.asset", "pk": 90, "fields": {"ip": "89.89.89.89", "other_ip": null, "remote_card_ip": null, "hostname": "stephanie71", "port": 22, "admin_user": 96, "idc": 99, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [1, 41, 58], "system_users": [8, 12, 95], "tags": []}}, {"model": "assets.asset", "pk": 91, "fields": {"ip": "90.90.90.90", "other_ip": null, "remote_card_ip": null, "hostname": "irene64", "port": 22, "admin_user": 43, "idc": 9, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [2, 51, 87], "system_users": [1, 22, 28], "tags": []}}, {"model": "assets.asset", "pk": 92, "fields": {"ip": "91.91.91.91", "other_ip": null, "remote_card_ip": null, "hostname": "diana77", "port": 22, "admin_user": 97, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [5, 97, 101], "system_users": [20, 63, 87], "tags": []}}, {"model": "assets.asset", "pk": 93, "fields": {"ip": "92.92.92.92", "other_ip": null, "remote_card_ip": null, "hostname": "carolyn87", "port": 22, "admin_user": 46, "idc": 49, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [5, 43, 67], "system_users": [67, 90, 97], "tags": []}}, {"model": "assets.asset", "pk": 94, "fields": {"ip": "93.93.93.93", "other_ip": null, "remote_card_ip": null, "hostname": "amy79", "port": 22, "admin_user": 70, "idc": 31, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:57Z", "comment": "", "groups": [25, 33, 69], "system_users": [22, 42, 69], "tags": []}}, {"model": "assets.asset", "pk": 95, "fields": {"ip": "94.94.94.94", "other_ip": null, "remote_card_ip": null, "hostname": "carol82", "port": 22, "admin_user": 92, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:58Z", "comment": "", "groups": [27, 43, 72], "system_users": [38, 60, 83], "tags": []}}, {"model": "assets.asset", "pk": 96, "fields": {"ip": "95.95.95.95", "other_ip": null, "remote_card_ip": null, "hostname": "patricia84", "port": 22, "admin_user": 43, "idc": 36, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:58Z", "comment": "", "groups": [3, 30, 79], "system_users": [34, 44, 72], "tags": []}}, {"model": "assets.asset", "pk": 97, "fields": {"ip": "96.96.96.96", "other_ip": null, "remote_card_ip": null, "hostname": "amanda87", "port": 22, "admin_user": 65, "idc": 38, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:58Z", "comment": "", "groups": [1, 13, 62], "system_users": [6, 26, 42], "tags": []}}, {"model": "assets.asset", "pk": 98, "fields": {"ip": "97.97.97.97", "other_ip": null, "remote_card_ip": null, "hostname": "elizabeth84", "port": 22, "admin_user": 49, "idc": 95, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:58Z", "comment": "", "groups": [30, 32, 42], "system_users": [2, 68, 82], "tags": []}}, {"model": "assets.asset", "pk": 99, "fields": {"ip": "98.98.98.98", "other_ip": null, "remote_card_ip": null, "hostname": "amy78", "port": 22, "admin_user": 40, "idc": 53, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:58Z", "comment": "", "groups": [34, 60, 15], "system_users": [58, 82, 93], "tags": []}}, {"model": "assets.asset", "pk": 100, "fields": {"ip": "99.99.99.99", "other_ip": null, "remote_card_ip": null, "hostname": "judith84", "port": 22, "admin_user": 85, "idc": 6, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": null, "type": null, "env": null, "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-02T14:58:58Z", "comment": "", "groups": [72, 9, 66], "system_users": [58, 85, 38], "tags": []}}, {"model": "users.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$30000$y45nsj5IDfVi$KUXoECb9rZJZ2ZosQSxi9anmj2oY5LAr1MdJby/xEzU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:51:45Z", "username": "admin", "name": "Administrator", "email": "admin@jumpserver.org", "role": "Admin", "avatar": "", "wechat": "", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Administrator is the super user of system", "is_first_login": false, "date_expired": "2086-10-16T14:51:45Z", "created_by": "System", "user_permissions": [], "groups": [1]}}, {"model": "users.user", "pk": 3, "fields": {"password": "pbkdf2_sha256$30000$6DZ5Sg96gPKG$+ADXaJizAyOGGMEO8tQLa5IbS1LFyr6I4bekMyPm5cw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "elizabeth80", "name": "Joyce Carroll", "email": "ruby@buzzbean.org", "role": "Admin", "avatar": "", "wechat": "mary86", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc nisl.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "admin", "user_permissions": [], "groups": [1, 80]}}, {"model": "users.user", "pk": 4, "fields": {"password": "pbkdf2_sha256$30000$yQ8k3rxtDYup$GbmLRCQ0HnsjYAPxmRlpKfmPOQp60GkMZ81CDq9MiKQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "julia87", "name": "Rose Kim", "email": "mary@kamba.gov", "role": "User", "avatar": "", "wechat": "michelle90", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Etiam pretium iaculis justo.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "elizabeth80", "user_permissions": [], "groups": [1, 2]}}, {"model": "users.user", "pk": 5, "fields": {"password": "pbkdf2_sha256$30000$mbxQwJBA81JV$uILa7NLyNOdQ0P1OWq53NdDoC2wbZDGLyI1AMv8RbtQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "betty66", "name": "Shirley Howell", "email": "theresa@yakitri.com", "role": "User", "avatar": "", "wechat": "joyce71", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam erat volutpat.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "elizabeth80", "user_permissions": [], "groups": [1, 64]}}, {"model": "users.user", "pk": 6, "fields": {"password": "pbkdf2_sha256$30000$0LEUJZ3bNi2I$wxceLAv9GGM1aLMMbjWjyP1UXpRnfGRiSiklILzVBOg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "stephanie82", "name": "Pamela Woods", "email": "maria@gigazoom.edu", "role": "Admin", "avatar": "", "wechat": "tammy76", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In blandit ultrices enim.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "julia87", "user_permissions": [], "groups": [1, 99]}}, {"model": "users.user", "pk": 7, "fields": {"password": "pbkdf2_sha256$30000$HVYvKAvViKmf$bRIXiXjXGbkY+QcXhNGZhkTVVApXPLOIBj5e9ZdOXhc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "stephanie93", "name": "Gloria Bryant", "email": "rachel@rhynyx.com", "role": "Admin", "avatar": "", "wechat": "ashley77", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "julia87", "user_permissions": [], "groups": [1, 84]}}, {"model": "users.user", "pk": 8, "fields": {"password": "pbkdf2_sha256$30000$SfOUh6FTDoek$fHyP+zAfcYoi93KX+VsyyKqIXpHueJvlTL9X0Vvb8pc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "dennis93", "name": "Howard Stephens", "email": "paula@photobug.net", "role": "Admin", "avatar": "", "wechat": "karen75", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "stephanie93", "user_permissions": [], "groups": [1, 83]}}, {"model": "users.user", "pk": 9, "fields": {"password": "pbkdf2_sha256$30000$n0IwUPD8QPJ9$+J/7chAE27sayBVBuO9gHos1PtONUEmIaeMrhYUkTbk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "linda93", "name": "Rose Chavez", "email": "norma@devbug.biz", "role": "Admin", "avatar": "", "wechat": "shirley74", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "dennis93", "user_permissions": [], "groups": [1, 27]}}, {"model": "users.user", "pk": 10, "fields": {"password": "pbkdf2_sha256$30000$DcBajEANqU7F$lWrWUX7sxSoYy6n65v1EUYHgN5UTJFvlyqRFa8y3xQU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "shirley66", "name": "Ruth Hall", "email": "christine@topicblab.edu", "role": "User", "avatar": "", "wechat": "anna91", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras pellentesque volutpat dui.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "stephanie82", "user_permissions": [], "groups": [1, 25]}}, {"model": "users.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$30000$KtcbG9Kmexc1$AreSJci2mm7XlLmqCoT8hGQnlm7k/f3QPKDUl4xIcdM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "elizabeth69", "name": "Lillian Lawrence", "email": "patricia@riffpedia.com", "role": "User", "avatar": "", "wechat": "debra79", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "stephanie93", "user_permissions": [], "groups": [1, 62]}}, {"model": "users.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$30000$2Fpvvm0hB3ws$aIgNExZ+ZB71CB6XnUxvs9ssra+20qeVaXkGg6kmG+g=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:33Z", "username": "lillian74", "name": "Doris Robertson", "email": "janice@jabberbean.gov", "role": "Admin", "avatar": "", "wechat": "virginia88", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce posuere felis sed lacus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:33Z", "created_by": "linda93", "user_permissions": [], "groups": [1, 62]}}, {"model": "users.user", "pk": 13, "fields": {"password": "pbkdf2_sha256$30000$HvS3JIgjj5Cw$q4ZuSoDLlv+pHbzAC9A+/D+jHqgWYW+Be9ZxZ/HtuAA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "margaret65", "name": "Norma Tucker", "email": "judy@gigabox.gov", "role": "Admin", "avatar": "", "wechat": "linda66", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "stephanie82", "user_permissions": [], "groups": [1, 100]}}, {"model": "users.user", "pk": 14, "fields": {"password": "pbkdf2_sha256$30000$fu2rEhHLmQmy$jKocC6q+0W2LdUGiPnTr+8R3k37P6BxtCYxiBsMUx1w=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "margaret80", "name": "Kimberly Bell", "email": "ann@babbleopia.edu", "role": "User", "avatar": "", "wechat": "denise82", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "elizabeth80", "user_permissions": [], "groups": [1, 78]}}, {"model": "users.user", "pk": 15, "fields": {"password": "pbkdf2_sha256$30000$O2A9vuYq6zLx$fGfMhzAKy8nKxc+ylBVupFixGKhlUKpG13a76yM6PhM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "martha76", "name": "Amanda Palmer", "email": "rachel@blognation.name", "role": "User", "avatar": "", "wechat": "jacqueline77", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec vitae nisi.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "stephanie93", "user_permissions": [], "groups": [1, 83]}}, {"model": "users.user", "pk": 16, "fields": {"password": "pbkdf2_sha256$30000$2QJ6eOP3KLyK$bkaqGRBqS0dGWTs9+OzcR4cuZtb/3gUqz2yBY5cYGRs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "janet67", "name": "Bonnie Howard", "email": "lillian@jabberstorm.net", "role": "User", "avatar": "", "wechat": "ryan67", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "margaret65", "user_permissions": [], "groups": [1, 43]}}, {"model": "users.user", "pk": 17, "fields": {"password": "pbkdf2_sha256$30000$b8nq8GMk43yR$N1DL2TIOPs4LBaKBqN7yEkbz/cfh0IQ8Q2iwL27M/0M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "donna89", "name": "Helen Richards", "email": "kelly@skilith.net", "role": "Admin", "avatar": "", "wechat": "lori72", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "julia87", "user_permissions": [], "groups": [1, 12]}}, {"model": "users.user", "pk": 18, "fields": {"password": "pbkdf2_sha256$30000$3GHHwsTG4xAQ$t04YkWMWzf0UwJiqHihjdGtbRVx0UVixTZINzi9cuYE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "brenda88", "name": "Patricia Stanley", "email": "carolyn@jetwire.gov", "role": "Admin", "avatar": "", "wechat": "amy75", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis bibendum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "margaret65", "user_permissions": [], "groups": [1, 26]}}, {"model": "users.user", "pk": 19, "fields": {"password": "pbkdf2_sha256$30000$kzjE6Y4j7dAC$fmgN6TqDN8WZ4jTCopuIA8Pi/nKNhW+rBz41OBGY6is=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "emily74", "name": "Heather Knight", "email": "lisa@fivechat.net", "role": "User", "avatar": "", "wechat": "ann88", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla nisl.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "janet67", "user_permissions": [], "groups": [1, 67]}}, {"model": "users.user", "pk": 20, "fields": {"password": "pbkdf2_sha256$30000$NGoD9Q02fsSz$3rcyyvBrJ2pq3cgVF4/Yl7LRVkHSRYNq+i+HObzusG4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "barbara81", "name": "Linda Cole", "email": "janice@oyope.org", "role": "Admin", "avatar": "", "wechat": "kelly72", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec semper sapien a libero.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "margaret65", "user_permissions": [], "groups": [1, 17]}}, {"model": "users.user", "pk": 21, "fields": {"password": "pbkdf2_sha256$30000$AdIBHgD7UpCe$aAEKM18BHrD0ogGpKmjf724jB6psqkWYSQzFCYcefO4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "diane91", "name": "Wanda Stone", "email": "cheryl@photobug.org", "role": "Admin", "avatar": "", "wechat": "mary84", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "emily74", "user_permissions": [], "groups": [1, 45]}}, {"model": "users.user", "pk": 22, "fields": {"password": "pbkdf2_sha256$30000$0OzPo0EzFEOo$i0J16VEw2PZVHoFp6798dFAm3BH+5A74rTsew8aRkOw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "amanda84", "name": "Mary Ramos", "email": "sarah@fivebridge.org", "role": "User", "avatar": "", "wechat": "amy82", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras non velit nec nisi vulputate nonummy.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "diane91", "user_permissions": [], "groups": [1, 68]}}, {"model": "users.user", "pk": 23, "fields": {"password": "pbkdf2_sha256$30000$RFL1zBMTunb8$h1A/EayEYo73ozScnTU2Fvh+9YaiknOQd6BWrqMeXQM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "deborah83", "name": "Amy Franklin", "email": "janet@devshare.com", "role": "Admin", "avatar": "", "wechat": "amanda85", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris sit amet eros.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "linda93", "user_permissions": [], "groups": [1, 77]}}, {"model": "users.user", "pk": 24, "fields": {"password": "pbkdf2_sha256$30000$EjF2ZLGSOmta$wPqO0yE1by+zukSo9z+314G0C5Sk2obwA8vdpWDIF0s=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "patricia79", "name": "Richard Stevens", "email": "joan@quatz.com", "role": "Admin", "avatar": "", "wechat": "doris66", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus id sapien in sapien iaculis congue.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "admin", "user_permissions": [], "groups": [1, 34]}}, {"model": "users.user", "pk": 25, "fields": {"password": "pbkdf2_sha256$30000$ZisSHY5bjzcU$WLyVlNXI/mhsYY5rpgK1Pb8q6y39C4VmRy6B3pXkPCo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "cynthia66", "name": "Gloria Bennett", "email": "margaret@skimia.biz", "role": "Admin", "avatar": "", "wechat": "lori67", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris lacinia sapien quis libero.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "linda93", "user_permissions": [], "groups": [1, 38]}}, {"model": "users.user", "pk": 26, "fields": {"password": "pbkdf2_sha256$30000$DsOGoQLi9cjx$tto88h01W5Aoevq/liIBZdRn8ZrkpVsAB9K+Esu4lf0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:34Z", "username": "kathy78", "name": "Rachel Stewart", "email": "jane@quaxo.gov", "role": "User", "avatar": "", "wechat": "sharon93", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent lectus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:34Z", "created_by": "margaret65", "user_permissions": [], "groups": [1, 48]}}, {"model": "users.user", "pk": 27, "fields": {"password": "pbkdf2_sha256$30000$T2z67Zm5nIFz$g4EMveS8GS4Oi6wwDU1ifMNiZ3rDj9T5AKZVF+Vw3Po=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "laura64", "name": "Pamela Simmons", "email": "anne@thoughtbridge.edu", "role": "User", "avatar": "", "wechat": "emily89", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "lillian74", "user_permissions": [], "groups": [1, 66]}}, {"model": "users.user", "pk": 28, "fields": {"password": "pbkdf2_sha256$30000$MqeHdp6T0fY1$Bwc3CuOPOkBvkPanOumS0QtXuHPggABmfEtCP1escXs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "amy87", "name": "Shirley Lynch", "email": "norma@eayo.mil", "role": "Admin", "avatar": "", "wechat": "sara80", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "admin", "user_permissions": [], "groups": [1, 27]}}, {"model": "users.user", "pk": 29, "fields": {"password": "pbkdf2_sha256$30000$zpwWELC823mJ$zdUpCmXqKuKvmlsGe7OU40t+NC3tH9FHc5MLVXX02S8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "sharon70", "name": "Tammy Martin", "email": "pamela@kaymbo.mil", "role": "User", "avatar": "", "wechat": "anna82", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "margaret65", "user_permissions": [], "groups": [1, 24]}}, {"model": "users.user", "pk": 30, "fields": {"password": "pbkdf2_sha256$30000$LvJqEBjSIjDL$Agtfxnj6h4agFQ3Y2vHMM8DN3RuRKgiqhLlUtC2T+ro=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "patricia83", "name": "Dorothy Perez", "email": "lisa@kwilith.mil", "role": "User", "avatar": "", "wechat": "sandra69", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse accumsan tortor quis turpis.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "julia87", "user_permissions": [], "groups": [1, 16]}}, {"model": "users.user", "pk": 31, "fields": {"password": "pbkdf2_sha256$30000$1IVsHyjmtWo2$zcPaJHqTc/dac3k4TXX5t1MuvuK0vb8swjowsVFmrVY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "dorothy92", "name": "Melissa Cooper", "email": "anna@abatz.name", "role": "User", "avatar": "", "wechat": "mildred66", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer non velit.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "linda93", "user_permissions": [], "groups": [1, 83]}}, {"model": "users.user", "pk": 32, "fields": {"password": "pbkdf2_sha256$30000$xAMN1i6R73rx$aE1YRMjItLWJJ20oWqRoLbf7N5RLX+IDN9wh8HV7M4M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "rachel92", "name": "Shirley Lawrence", "email": "barbara@gabtype.org", "role": "User", "avatar": "", "wechat": "tina94", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "admin", "user_permissions": [], "groups": [1, 47]}}, {"model": "users.user", "pk": 33, "fields": {"password": "pbkdf2_sha256$30000$AouTs0TyP7up$TzlVmK41ZXM8SwpP7w5LmVPzapQOrHnjnRW0wvWGGF8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "rebecca65", "name": "Ruby Powell", "email": "janice@reallinks.gov", "role": "User", "avatar": "", "wechat": "joyce73", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque ut erat.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "amy87", "user_permissions": [], "groups": [1, 21]}}, {"model": "users.user", "pk": 34, "fields": {"password": "pbkdf2_sha256$30000$zjU3eTZtQqVW$va8mpHfzZinSggPwaw6lVAJPoU+zjlW6N9BcNSb1c8o=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "ashley69", "name": "Kelly Reynolds", "email": "rebecca@yabox.gov", "role": "Admin", "avatar": "", "wechat": "lois93", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean auctor gravida sem.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "patricia83", "user_permissions": [], "groups": [1, 23]}}, {"model": "users.user", "pk": 35, "fields": {"password": "pbkdf2_sha256$30000$0SgubcY6Hfxj$B9101Obi83yUk7/5KKDs3im4ChduG8AhB11IOr0Q1Uk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "judith88", "name": "Linda Kennedy", "email": "virginia@rooxo.net", "role": "User", "avatar": "", "wechat": "melissa88", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis bibendum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "rachel92", "user_permissions": [], "groups": [1, 99]}}, {"model": "users.user", "pk": 36, "fields": {"password": "pbkdf2_sha256$30000$ia39Vbvm8Woq$BNEfGZtS27Ve/Smgv4DPGo0ELWEIba9gdkVoGXkmYiA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "linda80", "name": "Betty Morrison", "email": "julia@bubblebox.edu", "role": "User", "avatar": "", "wechat": "lillian82", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla ac enim.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "patricia79", "user_permissions": [], "groups": [1, 19]}}, {"model": "users.user", "pk": 37, "fields": {"password": "pbkdf2_sha256$30000$5cLHN37Zx7Ir$0rHp0TlEFmle9Xqd7C8fOHOtCuNFZ2KnjA/67d02nFU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "ashley71", "name": "Lillian Lawson", "email": "rose@dazzlesphere.info", "role": "Admin", "avatar": "", "wechat": "jean82", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "elizabeth69", "user_permissions": [], "groups": [1, 16]}}, {"model": "users.user", "pk": 38, "fields": {"password": "pbkdf2_sha256$30000$4WToJbq2ZGl8$mLkd+ZJqPh0DTwMngzzCZmnBo5LmJyU4VaBIYiopYjA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:35Z", "username": "jean72", "name": "Heather Ramos", "email": "tammy@mydeo.net", "role": "Admin", "avatar": "", "wechat": "wanda94", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin at turpis a pede posuere nonummy.", "is_first_login": false, "date_expired": "2086-10-16T14:58:35Z", "created_by": "elizabeth80", "user_permissions": [], "groups": [1, 87]}}, {"model": "users.user", "pk": 39, "fields": {"password": "pbkdf2_sha256$30000$Lz5J0M7zYhBB$E5iUWieHlayh3Icpfb8otsBW+eRxI3SCVIAAX0TrSvA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "kathleen63", "name": "Maria Nguyen", "email": "amanda@aimbu.info", "role": "Admin", "avatar": "", "wechat": "emily85", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "linda93", "user_permissions": [], "groups": [1, 45]}}, {"model": "users.user", "pk": 40, "fields": {"password": "pbkdf2_sha256$30000$uJDbEjXtIi06$eRi5pw1tWzbuHc0ssgcpgC1eINh+8OItDGSAfIuB1E8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "sharon94", "name": "Betty Richardson", "email": "judy@brainsphere.info", "role": "User", "avatar": "", "wechat": "julie89", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer a nibh.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "rachel92", "user_permissions": [], "groups": [1, 77]}}, {"model": "users.user", "pk": 41, "fields": {"password": "pbkdf2_sha256$30000$ZkGcASUT7GZr$Eqb2IZ5HjfUOlUPkFmsEJjXPRasTck2aKI1cbnE6kvE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "diana76", "name": "Wanda Webb", "email": "kathy@ntag.org", "role": "Admin", "avatar": "", "wechat": "cheryl81", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce posuere felis sed lacus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "donna89", "user_permissions": [], "groups": [1, 22]}}, {"model": "users.user", "pk": 42, "fields": {"password": "pbkdf2_sha256$30000$9APpp7hN9Vmv$/M/e1P4UnAChfal3Qwe0XZxMe/UA0Ccp2FM+48Mkwzo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "kathy70", "name": "Anna Rogers", "email": "anne@thoughtstorm.info", "role": "Admin", "avatar": "", "wechat": "judith71", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla tellus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "martha76", "user_permissions": [], "groups": [1, 58]}}, {"model": "users.user", "pk": 43, "fields": {"password": "pbkdf2_sha256$30000$esJ7nLqyhoyt$zyvSX1kvjrQoIgEEdNFhBU+TXhcgkq5LLLwnhLpNz9E=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "cheryl93", "name": "Janice Bishop", "email": "pamela@skippad.org", "role": "User", "avatar": "", "wechat": "ann67", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In eleifend quam a odio.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "ashley71", "user_permissions": [], "groups": [1, 48]}}, {"model": "users.user", "pk": 44, "fields": {"password": "pbkdf2_sha256$30000$Ucd7ZifA5qZD$igIgtDyoOFAixsUzdEtEkL6zZCJBEKEMT1HqVnUCeac=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "christina77", "name": "Louise Palmer", "email": "lori@feednation.gov", "role": "User", "avatar": "", "wechat": "nicole72", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vestibulum sagittis sapien.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "sharon94", "user_permissions": [], "groups": [1, 18]}}, {"model": "users.user", "pk": 45, "fields": {"password": "pbkdf2_sha256$30000$ItO178bvZKPi$x/+Q/JRlixTVoBEyQdb5e8j+m5soMX21n+WNSFrpx5I=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "amy69", "name": "Laura Hamilton", "email": "joyce@minyx.name", "role": "User", "avatar": "", "wechat": "rebecca86", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "diane91", "user_permissions": [], "groups": [1, 101]}}, {"model": "users.user", "pk": 46, "fields": {"password": "pbkdf2_sha256$30000$3Y86U6oXZwFj$pWuMevZ14UepTYCiLR/L4c4UWFjb31bgTAucoc4mKR4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "doris87", "name": "Linda Mendoza", "email": "ruth@mybuzz.edu", "role": "Admin", "avatar": "", "wechat": "ruby82", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin eu mi.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "ashley71", "user_permissions": [], "groups": [1, 99]}}, {"model": "users.user", "pk": 47, "fields": {"password": "pbkdf2_sha256$30000$ihz7dlHJEkvK$6KsgKX28hd5SD/EcCNQQYntyevoNqa2SIxiCD/XZGVo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "marie72", "name": "Teresa Hart", "email": "joan@dynazzy.mil", "role": "User", "avatar": "", "wechat": "ann86", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "patricia83", "user_permissions": [], "groups": [1, 31]}}, {"model": "users.user", "pk": 48, "fields": {"password": "pbkdf2_sha256$30000$Bc4PEH4BYbzO$wOg6AiwUxYM8yJsiiCPJ/e14u1WZDiR9nbAYwUGesGA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "anna65", "name": "Pamela Lawson", "email": "debra@blogpad.com", "role": "Admin", "avatar": "", "wechat": "howard93", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "margaret80", "user_permissions": [], "groups": [1, 64]}}, {"model": "users.user", "pk": 49, "fields": {"password": "pbkdf2_sha256$30000$uPuFgHLiwXAw$8pH/jJGxBojPJifeEW2dDmv+8tBIdsmHHHqVHVaeIgc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "susan85", "name": "Heather Rodriguez", "email": "amy@shuffletag.mil", "role": "Admin", "avatar": "", "wechat": "laura67", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean auctor gravida sem.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "ashley71", "user_permissions": [], "groups": [1, 80]}}, {"model": "users.user", "pk": 50, "fields": {"password": "pbkdf2_sha256$30000$BLBycBsXdG4O$Pj0HTnHBcT2d1vCz0mC2N/UpdH6QW0iaD9SR6GV2XAg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "cheryl94", "name": "Barbara Walker", "email": "frances@tagchat.com", "role": "User", "avatar": "", "wechat": "maria85", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam dui.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "ashley71", "user_permissions": [], "groups": [1, 22]}}, {"model": "users.user", "pk": 51, "fields": {"password": "pbkdf2_sha256$30000$he0hcvtQR5tx$FIHZBj/NIJCflb3XUXWwO13wk/9TtjTC1yicda2o9JU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "rose84", "name": "Catherine Reynolds", "email": "lori@photobug.mil", "role": "Admin", "avatar": "", "wechat": "ashley73", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "doris87", "user_permissions": [], "groups": [1]}}, {"model": "users.user", "pk": 52, "fields": {"password": "pbkdf2_sha256$30000$NOmXQPbxjOA7$sQAcXNJtzOIO3SOMa0poIXoBXgl4l3X1/6aKu8xsmSA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:36Z", "username": "margaret77", "name": "Jean Lawrence", "email": "louise@dazzlesphere.net", "role": "User", "avatar": "", "wechat": "virginia67", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla suscipit ligula in lacus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:36Z", "created_by": "marie72", "user_permissions": [], "groups": [1, 78]}}, {"model": "users.user", "pk": 53, "fields": {"password": "pbkdf2_sha256$30000$1Yds3Mn8rjlO$7HrQdD4HXU9JthGC+auLSLd+FW0Edx7tYtIAl/QBUQ4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "jean64", "name": "Cynthia Ortiz", "email": "diane@einti.edu", "role": "Admin", "avatar": "", "wechat": "kathleen79", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "cheryl94", "user_permissions": [], "groups": [1, 69]}}, {"model": "users.user", "pk": 54, "fields": {"password": "pbkdf2_sha256$30000$C4JFhyeIMzpw$ZbI+uaogEIwwnAJ7AeuCyckmw0jCnfZrnE3tazjLh48=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "jean85", "name": "Debra Peters", "email": "rose@livepath.edu", "role": "Admin", "avatar": "", "wechat": "theresa86", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer ac leo.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "kathy78", "user_permissions": [], "groups": [1, 98]}}, {"model": "users.user", "pk": 55, "fields": {"password": "pbkdf2_sha256$30000$Ee0chpOT7KkZ$XS3murG/tMEMaJK1bc0tGk3wdyfrM3oEGFYZxaCxkZs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "jessica73", "name": "Carol Hart", "email": "janet@jabberstorm.com", "role": "User", "avatar": "", "wechat": "mildred74", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer ac leo.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "emily74", "user_permissions": [], "groups": [1, 94]}}, {"model": "users.user", "pk": 56, "fields": {"password": "pbkdf2_sha256$30000$tjzvUKFi7jDW$fkMBUTUE/0UQKxarA9gHy9AnB63kWxyEPwkBK9OXtoI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "pamela85", "name": "Lori Lewis", "email": "maria@livefish.org", "role": "User", "avatar": "", "wechat": "ruth70", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "ashley71", "user_permissions": [], "groups": [1, 62]}}, {"model": "users.user", "pk": 57, "fields": {"password": "pbkdf2_sha256$30000$dzgP3wM9y6vL$DAK6VLFbq7CqkmqFWnJYiIQbwh0cr0NH6M0dfMuJCEo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "barbara73", "name": "Rebecca Garcia", "email": "theresa@leenti.mil", "role": "User", "avatar": "", "wechat": "christina70", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "donna89", "user_permissions": [], "groups": [1, 69]}}, {"model": "users.user", "pk": 58, "fields": {"password": "pbkdf2_sha256$30000$58jCKG4SF2Xj$S1ZXpJeCzYiLj560lPho/fzx01DzFdw5d23+MefuVfc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "debra79", "name": "Carol Young", "email": "donna@katz.com", "role": "User", "avatar": "", "wechat": "marie83", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "susan85", "user_permissions": [], "groups": [1, 84]}}, {"model": "users.user", "pk": 59, "fields": {"password": "pbkdf2_sha256$30000$HV7oSJ619soA$tqYKh2w0OB6nWlwWilMDlfMRYLT6UK1/Bb/xE16pCoQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "barbara68", "name": "Debra Montgomery", "email": "evelyn@zoonder.biz", "role": "Admin", "avatar": "", "wechat": "brenda67", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla facilisi.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "deborah83", "user_permissions": [], "groups": [1, 21]}}, {"model": "users.user", "pk": 60, "fields": {"password": "pbkdf2_sha256$30000$cRGWycFEaZzD$lFmfxRxCxWKzdiT5YVXbI1hSP1nLATzHWrKk1qQd0oE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "shirley85", "name": "Denise Rice", "email": "lori@blogtag.mil", "role": "Admin", "avatar": "", "wechat": "shirley86", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc rhoncus dui vel sem.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "dennis93", "user_permissions": [], "groups": [1, 85]}}, {"model": "users.user", "pk": 61, "fields": {"password": "pbkdf2_sha256$30000$tnqCq1YU4N1i$PS2gLaXTurOsvkaEHDL3l1N9IKbWOarts6KRq6STc8E=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "deborah85", "name": "Lois Owens", "email": "kathy@skalith.biz", "role": "Admin", "avatar": "", "wechat": "marie64", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "stephanie93", "user_permissions": [], "groups": [1, 99]}}, {"model": "users.user", "pk": 62, "fields": {"password": "pbkdf2_sha256$30000$lFOEJmPOKrKb$49GDUcrH+2iTAX9x4FoCTdaqfTDJx+3K6/HODPMgJ4U=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "angela78", "name": "Diane Johnston", "email": "joyce@realmix.mil", "role": "Admin", "avatar": "", "wechat": "beverly74", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "jean85", "user_permissions": [], "groups": [1, 100]}}, {"model": "users.user", "pk": 63, "fields": {"password": "pbkdf2_sha256$30000$Z0i8SuvSRexB$RcxBQd0yyOLu8ERe2NnYUabwbnGr8hCup++iFXXR4Ao=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "maria63", "name": "Martha Harvey", "email": "susan@dynazzy.com", "role": "Admin", "avatar": "", "wechat": "lori82", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Etiam vel augue.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "rachel92", "user_permissions": [], "groups": [1, 101]}}, {"model": "users.user", "pk": 64, "fields": {"password": "pbkdf2_sha256$30000$WLuNwllsgqms$BfUYQ4c2o5L6vdB+xxP6t1EQI7HdtDndu9RwhE9If9s=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "diana70", "name": "Ann White", "email": "cynthia@feednation.com", "role": "User", "avatar": "", "wechat": "stephanie85", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "margaret77", "user_permissions": [], "groups": [1, 18]}}, {"model": "users.user", "pk": 65, "fields": {"password": "pbkdf2_sha256$30000$aH5eR3DeBBJs$5oz4eOkPkywXDJcKTdEF4vlBgv92hCc3tCFk89kiQ1Q=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:37Z", "username": "tammy93", "name": "Julia Sullivan", "email": "janet@fivespan.com", "role": "User", "avatar": "", "wechat": "diana81", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla ac enim.", "is_first_login": false, "date_expired": "2086-10-16T14:58:37Z", "created_by": "sharon94", "user_permissions": [], "groups": [1, 74]}}, {"model": "users.user", "pk": 66, "fields": {"password": "pbkdf2_sha256$30000$CVlWKMfQZsnw$RMIskDxJh67JJA1nt41qMBRGekojoHRvWe8B7MnzN9E=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "heather73", "name": "Jean Gilbert", "email": "sara@jatri.edu", "role": "Admin", "avatar": "", "wechat": "donna93", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas rhoncus aliquam lacus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "marie72", "user_permissions": [], "groups": [1, 76]}}, {"model": "users.user", "pk": 67, "fields": {"password": "pbkdf2_sha256$30000$mxiE4D7eeKaO$bP/E1zVNsBdhIx80b4eVkd8z78J3qdQC25ir9IUNQeI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "marie77", "name": "Pamela Foster", "email": "janet@tanoodle.gov", "role": "User", "avatar": "", "wechat": "christine91", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec dapibus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "donna89", "user_permissions": [], "groups": [1, 8]}}, {"model": "users.user", "pk": 68, "fields": {"password": "pbkdf2_sha256$30000$0UsTk6TZux3n$jE2de3F7YUg4ElxwaORmtp90UsoNt0kINgQVJvt/Dl4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "jessica68", "name": "Angela Carpenter", "email": "jacqueline@eayo.edu", "role": "User", "avatar": "", "wechat": "dorothy81", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam dui.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "judith88", "user_permissions": [], "groups": [1, 31]}}, {"model": "users.user", "pk": 69, "fields": {"password": "pbkdf2_sha256$30000$Rs9m16ce8meS$nGj6Km/TXe5G7SVniL7QH6/PeY0tnEHDcgZDi2hkTGU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "lisa64", "name": "Julia Riley", "email": "jean@fliptune.com", "role": "User", "avatar": "", "wechat": "angela90", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "margaret65", "user_permissions": [], "groups": [1, 62]}}, {"model": "users.user", "pk": 70, "fields": {"password": "pbkdf2_sha256$30000$lGj481YYopsJ$M+7oJ7CVuEMQfb+i0/7KpAJVKYA5B8xaRBHEkXcWRX8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "barbara67", "name": "Kelly Howell", "email": "kelly@divape.edu", "role": "Admin", "avatar": "", "wechat": "rebecca88", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut mauris eget massa tempor convallis.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "angela78", "user_permissions": [], "groups": [1, 45]}}, {"model": "users.user", "pk": 71, "fields": {"password": "pbkdf2_sha256$30000$BCn5YTz5vziC$8UOXltr9CxR3ZmdpUQ78NJhBhNiqXb4W+TFnC54xML4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "donna80", "name": "Kathryn Chapman", "email": "jean@yabox.mil", "role": "Admin", "avatar": "", "wechat": "julia66", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "diana76", "user_permissions": [], "groups": [1, 34]}}, {"model": "users.user", "pk": 72, "fields": {"password": "pbkdf2_sha256$30000$SwrUH4hEDZ32$0MIkMO97zIjirVq9qCVsHfij4P5kMy/iAT9I0QkTDRQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "laura92", "name": "Evelyn Warren", "email": "sarah@feedfish.gov", "role": "User", "avatar": "", "wechat": "angela85", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "cheryl93", "user_permissions": [], "groups": [1, 81]}}, {"model": "users.user", "pk": 73, "fields": {"password": "pbkdf2_sha256$30000$NEBPuNvM5ox4$zqU8Ch40mn02RMlnW0/GJm2XKca+Y5FlkEStgZj1vFA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "sandra63", "name": "Joan Lynch", "email": "rose@linkbuzz.biz", "role": "Admin", "avatar": "", "wechat": "rebecca94", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "deborah85", "user_permissions": [], "groups": [1, 6]}}, {"model": "users.user", "pk": 74, "fields": {"password": "pbkdf2_sha256$30000$mb4QCnG3KORY$1CuEpQb9jZD0fu3O2+4Y9YwskNU0+RWD08vcpTOA2R8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "rebecca70", "name": "Sandra Peterson", "email": "catherine@babbleblab.org", "role": "User", "avatar": "", "wechat": "virginia80", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi non quam nec dui luctus rutrum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "judith88", "user_permissions": [], "groups": [1, 52]}}, {"model": "users.user", "pk": 75, "fields": {"password": "pbkdf2_sha256$30000$oNeWZuMvvHrX$uXJ8kFOMd8D0zfFGbXC+mccRtHBq9QYWTLdNto2tqis=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "teresa76", "name": "Kimberly Price", "email": "linda@mynte.gov", "role": "User", "avatar": "", "wechat": "phyllis77", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean fermentum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "diana76", "user_permissions": [], "groups": [1, 21]}}, {"model": "users.user", "pk": 76, "fields": {"password": "pbkdf2_sha256$30000$YTNLM67pcdy1$PfTWo6FNh9g8MPPZAWeP/9QdTrKe/nSRreu0noWE2rs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "evelyn75", "name": "Diane Campbell", "email": "ashley@skimia.biz", "role": "Admin", "avatar": "", "wechat": "theresa91", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "barbara81", "user_permissions": [], "groups": [1, 76]}}, {"model": "users.user", "pk": 77, "fields": {"password": "pbkdf2_sha256$30000$2GskxN9q2ZGU$aqKzej4+75nGz6RDkFIUZATIfwSOToiMiiffY9ggNpc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:38Z", "username": "alice70", "name": "Julie Andrews", "email": "angela@skippad.biz", "role": "User", "avatar": "", "wechat": "lillian92", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas pulvinar lobortis est.", "is_first_login": false, "date_expired": "2086-10-16T14:58:38Z", "created_by": "angela78", "user_permissions": [], "groups": [1, 97]}}, {"model": "users.user", "pk": 78, "fields": {"password": "pbkdf2_sha256$30000$o0VVcR0WidnL$+/2yuMSwHEwMlNu4mt8APtMIn89hXaNq0Pztz47YBK4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "heather84", "name": "Martha Alexander", "email": "jane@thoughtmix.edu", "role": "User", "avatar": "", "wechat": "frances73", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam non mauris.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "rachel92", "user_permissions": [], "groups": [1, 98]}}, {"model": "users.user", "pk": 79, "fields": {"password": "pbkdf2_sha256$30000$aeHyqos1p8Zg$wPHJe38ZWSuMX3zHy07wOnfqqfZVnJNxzGyWFq0gjMU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "kathryn75", "name": "Emily Perkins", "email": "nicole@tagchat.org", "role": "User", "avatar": "", "wechat": "judith70", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi non quam nec dui luctus rutrum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "alice70", "user_permissions": [], "groups": [1, 78]}}, {"model": "users.user", "pk": 80, "fields": {"password": "pbkdf2_sha256$30000$6xEervWYUoI4$y69QXfRx11OW4VsdSsKDG6ExaZOfIEuSmyd0iVvxhz8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "anna76", "name": "Joyce Duncan", "email": "amanda@meeveo.org", "role": "Admin", "avatar": "", "wechat": "teresa80", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque eget nunc.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "admin", "user_permissions": [], "groups": [1, 25]}}, {"model": "users.user", "pk": 81, "fields": {"password": "pbkdf2_sha256$30000$KJGDxzHp7myy$6HZs9HjiUys2i+V6eOrWaVoOLNUr16PT2a5LeCfcsNs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "diane68", "name": "Frances Robertson", "email": "shirley@skyba.mil", "role": "User", "avatar": "", "wechat": "doris81", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque eget nunc.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "maria63", "user_permissions": [], "groups": [1, 5]}}, {"model": "users.user", "pk": 82, "fields": {"password": "pbkdf2_sha256$30000$hH1QRfITcPSP$7w45ZO9GGx6JZnNJX8TmZ8sQ0jhmyGsC2ng5puBhDnw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "tina94", "name": "Judy Brooks", "email": "diana@nlounge.net", "role": "User", "avatar": "", "wechat": "evelyn79", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi a ipsum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "laura64", "user_permissions": [], "groups": [1, 27]}}, {"model": "users.user", "pk": 83, "fields": {"password": "pbkdf2_sha256$30000$rZ3r89teyKBB$sNfwv5gQrHM//Gk8ejlTTssW0U1oXSfku9FK+tzIHq4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "rebecca67", "name": "Sandra Armstrong", "email": "kathryn@thoughtbeat.info", "role": "User", "avatar": "", "wechat": "laura94", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "linda93", "user_permissions": [], "groups": [1, 94]}}, {"model": "users.user", "pk": 84, "fields": {"password": "pbkdf2_sha256$30000$XWxPayICYnXx$5WOqX2VBPuPIPnbLMMM+3oT1UdJ7p0KW12kTs+hCnfc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "maria92", "name": "Donna Daniels", "email": "jessica@oyope.net", "role": "Admin", "avatar": "", "wechat": "kathleen87", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut mauris eget massa tempor convallis.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "jessica68", "user_permissions": [], "groups": [1, 94]}}, {"model": "users.user", "pk": 85, "fields": {"password": "pbkdf2_sha256$30000$FfdTYqIiefYr$fv5pqEeioJbcVEZTrjD1KeBSxFfZnbHJlcgI6UyfERk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "rebecca85", "name": "Janet Evans", "email": "amanda@realmix.info", "role": "Admin", "avatar": "", "wechat": "bonnie77", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras in purus eu magna vulputate luctus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "kathleen63", "user_permissions": [], "groups": [1, 98]}}, {"model": "users.user", "pk": 86, "fields": {"password": "pbkdf2_sha256$30000$R24T8MQ7VrOj$5xwZTCNaEMKK1PrgvfKngCo1c7yNRod32+4Gl2JIGQg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "bonnie87", "name": "Kimberly Daniels", "email": "judith@yodo.com", "role": "User", "avatar": "", "wechat": "jacqueline91", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam nulla.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "amy69", "user_permissions": [], "groups": [1, 16]}}, {"model": "users.user", "pk": 87, "fields": {"password": "pbkdf2_sha256$30000$4wAVOBGGU8bQ$oXM6hHdrQrIvm7VHo4LRzLSiTGqiq/U4ISmEvAz+amQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "nicole88", "name": "Rose Richards", "email": "stephanie@brightdog.edu", "role": "User", "avatar": "", "wechat": "debra90", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer non velit.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "deborah83", "user_permissions": [], "groups": [1, 5]}}, {"model": "users.user", "pk": 88, "fields": {"password": "pbkdf2_sha256$30000$wqgFCpTDPvrg$76TzCzg2BY10h4btdufmoKXr3nIizFq/xmeZu3k4Dnk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "sara86", "name": "Evelyn Ford", "email": "norma@fivechat.net", "role": "User", "avatar": "", "wechat": "kathryn69", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur in libero ut massa volutpat convallis.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "lillian74", "user_permissions": [], "groups": [1, 41]}}, {"model": "users.user", "pk": 89, "fields": {"password": "pbkdf2_sha256$30000$kxIrWMPIKrUa$Gt3izaV2vbksm37ldGsd/Isa+XpQO74AdlkSMAj23z8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:39Z", "username": "mildred64", "name": "Virginia Jenkins", "email": "amanda@avavee.mil", "role": "User", "avatar": "", "wechat": "maria74", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:39Z", "created_by": "maria92", "user_permissions": [], "groups": [1, 36]}}, {"model": "users.user", "pk": 90, "fields": {"password": "pbkdf2_sha256$30000$zSPxLmiwP9sa$fiIfU14loiJoymXaPFfiDUazM3XEFwPWYZT9CTt1PLY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "kathy85", "name": "Lisa Austin", "email": "emily@gigabox.net", "role": "User", "avatar": "", "wechat": "sandra74", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vestibulum sagittis sapien.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "marie77", "user_permissions": [], "groups": [1, 68]}}, {"model": "users.user", "pk": 91, "fields": {"password": "pbkdf2_sha256$30000$JDDJkr9qPtUh$qJ32LTYY8lzfznn9iqeoX1Z51yUIDrp9f0dohUN65fI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "melissa82", "name": "Alice Austin", "email": "pamela@babbleopia.biz", "role": "Admin", "avatar": "", "wechat": "mildred88", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut mauris eget massa tempor convallis.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "stephanie93", "user_permissions": [], "groups": [1, 69]}}, {"model": "users.user", "pk": 92, "fields": {"password": "pbkdf2_sha256$30000$B7uWXmzdmecs$uj9r5nv+KCGKJ/mzuf2q6i6a/RTPrtoKW2uIFbie9Lo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "maria91", "name": "Catherine Kelley", "email": "evelyn@edgepulse.mil", "role": "User", "avatar": "", "wechat": "doris82", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis ac nibh.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "rebecca70", "user_permissions": [], "groups": [1, 8]}}, {"model": "users.user", "pk": 93, "fields": {"password": "pbkdf2_sha256$30000$KsOCNXb3GZKC$FBzKrA5Vrd4awBeNkE0aBxexwnAxf+Fv/6Ck0bquBRk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "mary88", "name": "Jean West", "email": "karen@oyope.edu", "role": "Admin", "avatar": "", "wechat": "doris93", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec dapibus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "kathy85", "user_permissions": [], "groups": [1, 19]}}, {"model": "users.user", "pk": 94, "fields": {"password": "pbkdf2_sha256$30000$58PFX4034UXA$rxfRjWrCNfcEWFn5/14W03IUN8U13LEbzWpbNQhp4fY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "phyllis93", "name": "Marilyn Campbell", "email": "katherine@photobug.com", "role": "User", "avatar": "", "wechat": "alice80", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "kathy78", "user_permissions": [], "groups": [1, 100]}}, {"model": "users.user", "pk": 95, "fields": {"password": "pbkdf2_sha256$30000$04uTzwBvGpbr$mmdHG3cL+M7g5kmuySuqtdW4mFQnGeMjF42xpEEEKP0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "linda92", "name": "Lisa Payne", "email": "ashley@wikibox.gov", "role": "Admin", "avatar": "", "wechat": "marilyn72", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec dapibus.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "lisa64", "user_permissions": [], "groups": [1, 59]}}, {"model": "users.user", "pk": 96, "fields": {"password": "pbkdf2_sha256$30000$If0pgPp93j6K$Vw3YIKAyyAKMG+Z9yK+EvlxCE7d8x4JJRROfmfNAeEE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "heather68", "name": "Deborah Hudson", "email": "irene@eimbee.info", "role": "User", "avatar": "", "wechat": "patricia90", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi a ipsum.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "rebecca67", "user_permissions": [], "groups": [1, 85]}}, {"model": "users.user", "pk": 97, "fields": {"password": "pbkdf2_sha256$30000$AWkHJHtpUQsi$w75Tcoh0FZPYUDMIebMVUqXvWTNayqOFvfi4EVncdxY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "teresa80", "name": "Cynthia Hall", "email": "cynthia@pixope.net", "role": "User", "avatar": "", "wechat": "sandra83", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed accumsan felis.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "doris87", "user_permissions": [], "groups": [1, 44]}}, {"model": "users.user", "pk": 98, "fields": {"password": "pbkdf2_sha256$30000$keQeHU2s7pep$6XR00Eb9p1nz/8iDB4AChSEyzMzlDasm/GU1fqF5w0k=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "lori70", "name": "Andrea Hart", "email": "amanda@divape.mil", "role": "User", "avatar": "", "wechat": "ann85", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec vitae nisi.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "pamela85", "user_permissions": [], "groups": [1, 65]}}, {"model": "users.user", "pk": 99, "fields": {"password": "pbkdf2_sha256$30000$un8fq3m761ag$D/SyFVXAKlJJfOATx9frKVZ0j43r3zKass5tJDfBdNM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "irene72", "name": "Amy Evans", "email": "patricia@jayo.name", "role": "User", "avatar": "", "wechat": "diane71", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "marie72", "user_permissions": [], "groups": [1]}}, {"model": "users.user", "pk": 100, "fields": {"password": "pbkdf2_sha256$30000$JzPA0RC0JlqR$GUl9FeKx10SZ175yK5GOFjsx151e028JfSG9i/QHTPg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "sarah84", "name": "Dorothy Cook", "email": "janice@leenti.gov", "role": "User", "avatar": "", "wechat": "kathleen66", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "maria63", "user_permissions": [], "groups": [1, 100]}}, {"model": "users.user", "pk": 101, "fields": {"password": "pbkdf2_sha256$30000$wgPs53da3238$0ZUCR2ax8OMz4j2spxtidIPKhOD0hKhJE2zREMi3eRI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-02T14:58:40Z", "username": "annie76", "name": "Kimberly Lopez", "email": "gloria@kwimbee.name", "role": "User", "avatar": "", "wechat": "annie90", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "is_first_login": false, "date_expired": "2086-10-16T14:58:40Z", "created_by": "ashley71", "user_permissions": [], "groups": [1, 99]}}]
+[{"model": "users.usergroup", "pk": 1, "fields": {"is_discard": false, "discard_time": null, "name": "Default", "comment": "Default user group for all user", "date_created": "2016-11-25T06:50:28Z", "created_by": "System"}}, {"model": "users.usergroup", "pk": 2, "fields": {"is_discard": false, "discard_time": null, "name": "Charles Hanson", "comment": "Nullam varius.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 3, "fields": {"is_discard": false, "discard_time": null, "name": "Karen Stephens", "comment": "Quisque ut erat.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 4, "fields": {"is_discard": false, "discard_time": null, "name": "Julie Evans", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 5, "fields": {"is_discard": false, "discard_time": null, "name": "Gregory Price", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 6, "fields": {"is_discard": false, "discard_time": null, "name": "Tammy Gutierrez", "comment": "Etiam justo.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 7, "fields": {"is_discard": false, "discard_time": null, "name": "Louise Wheeler", "comment": "Suspendisse potenti.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 8, "fields": {"is_discard": false, "discard_time": null, "name": "Rachel Hansen", "comment": "Etiam faucibus cursus urna.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 9, "fields": {"is_discard": false, "discard_time": null, "name": "Ruth Campbell", "comment": "Duis bibendum.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 10, "fields": {"is_discard": false, "discard_time": null, "name": "Jesse Peterson", "comment": "Duis at velit eu est congue elementum.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 11, "fields": {"is_discard": false, "discard_time": null, "name": "Ruby Rose", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 12, "fields": {"is_discard": false, "discard_time": null, "name": "Donna Arnold", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 13, "fields": {"is_discard": false, "discard_time": null, "name": "Gary Harvey", "comment": "Ut at dolor quis odio consequat varius.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 14, "fields": {"is_discard": false, "discard_time": null, "name": "Pamela Palmer", "comment": "Mauris sit amet eros.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 15, "fields": {"is_discard": false, "discard_time": null, "name": "Mildred Harrison", "comment": "Phasellus sit amet erat.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 16, "fields": {"is_discard": false, "discard_time": null, "name": "Melissa King", "comment": "Pellentesque at nulla.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 17, "fields": {"is_discard": false, "discard_time": null, "name": "Lillian Reed", "comment": "Nullam molestie nibh in lectus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 18, "fields": {"is_discard": false, "discard_time": null, "name": "Theresa Mills", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 19, "fields": {"is_discard": false, "discard_time": null, "name": "Dorothy Gardner", "comment": "Donec dapibus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 20, "fields": {"is_discard": false, "discard_time": null, "name": "Tina Williamson", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 21, "fields": {"is_discard": false, "discard_time": null, "name": "Irene Jenkins", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 22, "fields": {"is_discard": false, "discard_time": null, "name": "Kelly Kennedy", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 23, "fields": {"is_discard": false, "discard_time": null, "name": "Marilyn Ramos", "comment": "Pellentesque viverra pede ac diam.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 24, "fields": {"is_discard": false, "discard_time": null, "name": "Theresa Murray", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 25, "fields": {"is_discard": false, "discard_time": null, "name": "Kimberly Hunt", "comment": "Nulla tempus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 26, "fields": {"is_discard": false, "discard_time": null, "name": "Stephanie Barnes", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 27, "fields": {"is_discard": false, "discard_time": null, "name": "Lisa Williamson", "comment": "Vivamus in felis eu sapien cursus vestibulum.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 28, "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Watson", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 29, "fields": {"is_discard": false, "discard_time": null, "name": "Jean Simmons", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 30, "fields": {"is_discard": false, "discard_time": null, "name": "Frances Walker", "comment": "Integer ac leo.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 31, "fields": {"is_discard": false, "discard_time": null, "name": "Teresa Long", "comment": "Etiam faucibus cursus urna.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 32, "fields": {"is_discard": false, "discard_time": null, "name": "Anna Lopez", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 33, "fields": {"is_discard": false, "discard_time": null, "name": "Louise Bishop", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 34, "fields": {"is_discard": false, "discard_time": null, "name": "Ruby Baker", "comment": "Donec ut dolor.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 35, "fields": {"is_discard": false, "discard_time": null, "name": "Phyllis Perkins", "comment": "Mauris lacinia sapien quis libero.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 36, "fields": {"is_discard": false, "discard_time": null, "name": "Sara Riley", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 37, "fields": {"is_discard": false, "discard_time": null, "name": "Nicole Grant", "comment": "Curabitur gravida nisi at nibh.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 38, "fields": {"is_discard": false, "discard_time": null, "name": "Sharon Ward", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 39, "fields": {"is_discard": false, "discard_time": null, "name": "Pamela Watson", "comment": "Phasellus sit amet erat.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 40, "fields": {"is_discard": false, "discard_time": null, "name": "Rebecca Little", "comment": "Suspendisse potenti.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 41, "fields": {"is_discard": false, "discard_time": null, "name": "Diana Cooper", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 42, "fields": {"is_discard": false, "discard_time": null, "name": "Doris Martin", "comment": "Cras pellentesque volutpat dui.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 43, "fields": {"is_discard": false, "discard_time": null, "name": "Cheryl Peters", "comment": "Praesent lectus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 44, "fields": {"is_discard": false, "discard_time": null, "name": "Gloria Thompson", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 45, "fields": {"is_discard": false, "discard_time": null, "name": "Jacqueline Porter", "comment": "Curabitur in libero ut massa volutpat convallis.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 46, "fields": {"is_discard": false, "discard_time": null, "name": "Mildred Kelly", "comment": "Duis mattis egestas metus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 47, "fields": {"is_discard": false, "discard_time": null, "name": "Shirley Kennedy", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 48, "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Meyer", "comment": "Donec ut mauris eget massa tempor convallis.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 49, "fields": {"is_discard": false, "discard_time": null, "name": "Kimberly Hart", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 50, "fields": {"is_discard": false, "discard_time": null, "name": "Louise Jordan", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 51, "fields": {"is_discard": false, "discard_time": null, "name": "Evelyn Willis", "comment": "Proin interdum mauris non ligula pellentesque ultrices.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 52, "fields": {"is_discard": false, "discard_time": null, "name": "Sara Shaw", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 53, "fields": {"is_discard": false, "discard_time": null, "name": "Dorothy Thomas", "comment": "Donec ut mauris eget massa tempor convallis.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 54, "fields": {"is_discard": false, "discard_time": null, "name": "Doris Evans", "comment": "In sagittis dui vel nisl.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 55, "fields": {"is_discard": false, "discard_time": null, "name": "Amy Hawkins", "comment": "Nulla ut erat id mauris vulputate elementum.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 56, "fields": {"is_discard": false, "discard_time": null, "name": "Ruby James", "comment": "Proin at turpis a pede posuere nonummy.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 57, "fields": {"is_discard": false, "discard_time": null, "name": "Diane Owens", "comment": "Pellentesque viverra pede ac diam.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 58, "fields": {"is_discard": false, "discard_time": null, "name": "Patricia Larson", "comment": "Ut at dolor quis odio consequat varius.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 59, "fields": {"is_discard": false, "discard_time": null, "name": "Betty Montgomery", "comment": "Praesent lectus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 60, "fields": {"is_discard": false, "discard_time": null, "name": "Julia Cooper", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 61, "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Moore", "comment": "Fusce consequat.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 62, "fields": {"is_discard": false, "discard_time": null, "name": "Mildred Rose", "comment": "Pellentesque eget nunc.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 63, "fields": {"is_discard": false, "discard_time": null, "name": "Cheryl Howell", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 64, "fields": {"is_discard": false, "discard_time": null, "name": "Barbara Green", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 65, "fields": {"is_discard": false, "discard_time": null, "name": "Shirley Robertson", "comment": "Nunc purus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 66, "fields": {"is_discard": false, "discard_time": null, "name": "Judith Castillo", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 67, "fields": {"is_discard": false, "discard_time": null, "name": "Alice Reyes", "comment": "Morbi non lectus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 68, "fields": {"is_discard": false, "discard_time": null, "name": "Mary Stone", "comment": "Suspendisse potenti.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 69, "fields": {"is_discard": false, "discard_time": null, "name": "Maria Mcdonald", "comment": "Proin eu mi.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 70, "fields": {"is_discard": false, "discard_time": null, "name": "Jennifer Hunter", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 71, "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Robertson", "comment": "In eleifend quam a odio.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 72, "fields": {"is_discard": false, "discard_time": null, "name": "Frances Stevens", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 73, "fields": {"is_discard": false, "discard_time": null, "name": "Matthew Jacobs", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 74, "fields": {"is_discard": false, "discard_time": null, "name": "Doris Vasquez", "comment": "Curabitur in libero ut massa volutpat convallis.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 75, "fields": {"is_discard": false, "discard_time": null, "name": "Lori Moreno", "comment": "Praesent blandit.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 76, "fields": {"is_discard": false, "discard_time": null, "name": "Pamela Harris", "comment": "Suspendisse potenti.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 77, "fields": {"is_discard": false, "discard_time": null, "name": "Patricia Williamson", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 78, "fields": {"is_discard": false, "discard_time": null, "name": "Denise Bradley", "comment": "Maecenas tincidunt lacus at velit.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 79, "fields": {"is_discard": false, "discard_time": null, "name": "Louise Montgomery", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 80, "fields": {"is_discard": false, "discard_time": null, "name": "Robin Riley", "comment": "Vivamus in felis eu sapien cursus vestibulum.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 81, "fields": {"is_discard": false, "discard_time": null, "name": "Heather Hernandez", "comment": "Etiam vel augue.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 82, "fields": {"is_discard": false, "discard_time": null, "name": "Amanda Collins", "comment": "Maecenas tincidunt lacus at velit.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 83, "fields": {"is_discard": false, "discard_time": null, "name": "Kathy Kelly", "comment": "Fusce consequat.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 84, "fields": {"is_discard": false, "discard_time": null, "name": "Emily Ryan", "comment": "Nam nulla.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 85, "fields": {"is_discard": false, "discard_time": null, "name": "Ruby Peters", "comment": "Donec vitae nisi.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 86, "fields": {"is_discard": false, "discard_time": null, "name": "Amanda Woods", "comment": "Mauris lacinia sapien quis libero.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 87, "fields": {"is_discard": false, "discard_time": null, "name": "Patricia Baker", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 88, "fields": {"is_discard": false, "discard_time": null, "name": "Kathleen Myers", "comment": "Quisque porta volutpat erat.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 89, "fields": {"is_discard": false, "discard_time": null, "name": "Theresa Black", "comment": "Cras non velit nec nisi vulputate nonummy.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 90, "fields": {"is_discard": false, "discard_time": null, "name": "Marilyn Howard", "comment": "Praesent blandit lacinia erat.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 91, "fields": {"is_discard": false, "discard_time": null, "name": "Marie Hawkins", "comment": "Maecenas tincidunt lacus at velit.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 92, "fields": {"is_discard": false, "discard_time": null, "name": "Shirley Meyer", "comment": "Phasellus id sapien in sapien iaculis congue.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 93, "fields": {"is_discard": false, "discard_time": null, "name": "Rebecca Griffin", "comment": "Integer ac leo.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 94, "fields": {"is_discard": false, "discard_time": null, "name": "Kathy Chapman", "comment": "Nulla tellus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 95, "fields": {"is_discard": false, "discard_time": null, "name": "Rachel Miller", "comment": "Suspendisse ornare consequat lectus.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 96, "fields": {"is_discard": false, "discard_time": null, "name": "Karen Bradley", "comment": "Quisque ut erat.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 97, "fields": {"is_discard": false, "discard_time": null, "name": "Julie Owens", "comment": "Nulla facilisi.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 98, "fields": {"is_discard": false, "discard_time": null, "name": "Carol Brooks", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 99, "fields": {"is_discard": false, "discard_time": null, "name": "Jean Baker", "comment": "In sagittis dui vel nisl.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 100, "fields": {"is_discard": false, "discard_time": null, "name": "Melissa Hart", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 101, "fields": {"is_discard": false, "discard_time": null, "name": "Jacqueline Ruiz", "comment": "In congue.", "date_created": "2016-11-25T15:09:44Z", "created_by": "admin"}}, {"model": "assets.idc", "pk": 1, "fields": {"name": "Joyce Miller", "bandwidth": "200M", "contact": "Heather Bradley", "phone": "8-(303)137-0559", "address": "Eureka09643 Bunker Hill Point", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": 2, "fields": {"name": "Christina Torres", "bandwidth": "200M", "contact": "Ashley Garrett", "phone": "3-(617)525-2809", "address": "Delano50 Hoepker Street", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci."}}, {"model": "assets.idc", "pk": 3, "fields": {"name": "Margaret Snyder", "bandwidth": "200M", "contact": "Ruth Fuller", "phone": "2-(014)427-6615", "address": "Waterford6830 Lakewood Alley", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo."}}, {"model": "assets.idc", "pk": 4, "fields": {"name": "Robin Owens", "bandwidth": "200M", "contact": "Alice Miller", "phone": "8-(116)690-3745", "address": "Blythe71 Farwell Lane", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa."}}, {"model": "assets.idc", "pk": 5, "fields": {"name": "Diane Collins", "bandwidth": "200M", "contact": "Theresa Perry", "phone": "5-(340)577-3300", "address": "Wheatland74183 Stang Pass", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.idc", "pk": 6, "fields": {"name": "Judith Hunter", "bandwidth": "200M", "contact": "Barbara Morris", "phone": "0-(882)134-2370", "address": "Palm Desert85327 Nobel Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis ac nibh."}}, {"model": "assets.idc", "pk": 7, "fields": {"name": "Deborah Oliver", "bandwidth": "200M", "contact": "Jennifer Shaw", "phone": "6-(194)283-1035", "address": "Monrovia182 Longview Circle", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nunc purus."}}, {"model": "assets.idc", "pk": 8, "fields": {"name": "Gloria Hart", "bandwidth": "200M", "contact": "Maria Henderson", "phone": "5-(299)131-6507", "address": "Covina1726 Moose Point", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam."}}, {"model": "assets.idc", "pk": 9, "fields": {"name": "Nicole Gonzalez", "bandwidth": "200M", "contact": "Patricia Perez", "phone": "1-(599)317-0897", "address": "Poway7 International Street", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci."}}, {"model": "assets.idc", "pk": 10, "fields": {"name": "Virginia Chavez", "bandwidth": "200M", "contact": "Virginia White", "phone": "0-(926)722-5194", "address": "San Leandro012 Waywood Lane", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Quisque porta volutpat erat."}}, {"model": "assets.idc", "pk": 11, "fields": {"name": "Lillian Little", "bandwidth": "200M", "contact": "Betty Powell", "phone": "6-(473)009-2723", "address": "Hidden Hills81745 Express Junction", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.idc", "pk": 12, "fields": {"name": "Cheryl Crawford", "bandwidth": "200M", "contact": "Carolyn Marshall", "phone": "2-(810)767-6638", "address": "San Bernardino79451 Granby Drive", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.idc", "pk": 13, "fields": {"name": "Julie Gutierrez", "bandwidth": "200M", "contact": "Gloria Little", "phone": "0-(928)607-3573", "address": "San Luis Obispo85610 Bowman Circle", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Integer non velit."}}, {"model": "assets.idc", "pk": 14, "fields": {"name": "Cheryl Reed", "bandwidth": "200M", "contact": "Emily Scott", "phone": "3-(255)307-2315", "address": "Pacifica04 Nevada Drive", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Mauris ullamcorper purus sit amet nulla."}}, {"model": "assets.idc", "pk": 15, "fields": {"name": "Judith Woods", "bandwidth": "200M", "contact": "Kelly Perkins", "phone": "2-(042)201-2307", "address": "Turlock48675 Katie Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nunc purus."}}, {"model": "assets.idc", "pk": 16, "fields": {"name": "Lori Smith", "bandwidth": "200M", "contact": "Betty Richardson", "phone": "4-(738)444-9500", "address": "San Fernando62014 Bunting Trail", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Curabitur in libero ut massa volutpat convallis."}}, {"model": "assets.idc", "pk": 17, "fields": {"name": "Janice Jacobs", "bandwidth": "200M", "contact": "Mary Simmons", "phone": "1-(682)949-1533", "address": "Calexico762 Elgar Hill", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis ac nibh."}}, {"model": "assets.idc", "pk": 18, "fields": {"name": "Angela Kelly", "bandwidth": "200M", "contact": "Stephanie Sander", "phone": "9-(926)636-3559", "address": "East Palo Alto42 Shasta Park", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh."}}, {"model": "assets.idc", "pk": 19, "fields": {"name": "Patricia Warren", "bandwidth": "200M", "contact": "Kathy Greene", "phone": "9-(198)140-5099", "address": "Wasco860 Banding Court", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Proin at turpis a pede posuere nonummy."}}, {"model": "assets.idc", "pk": 20, "fields": {"name": "Kathy Kim", "bandwidth": "200M", "contact": "Judy Hunter", "phone": "9-(635)531-8597", "address": "Alameda24 Mayer Center", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Duis at velit eu est congue elementum."}}, {"model": "assets.idc", "pk": 21, "fields": {"name": "Evelyn Montgomery", "bandwidth": "200M", "contact": "Mary Brooks", "phone": "5-(848)938-7931", "address": "Maywood3705 Coolidge Road", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus."}}, {"model": "assets.idc", "pk": 22, "fields": {"name": "Louise Gonzalez", "bandwidth": "200M", "contact": "Patricia Baker", "phone": "8-(462)937-8803", "address": "Monterey Park9132 Arrowood Pass", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus."}}, {"model": "assets.idc", "pk": 23, "fields": {"name": "Karen Jackson", "bandwidth": "200M", "contact": "Katherine Olson", "phone": "7-(371)333-2390", "address": "Calistoga79368 Golf Course Park", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Sed sagittis."}}, {"model": "assets.idc", "pk": 24, "fields": {"name": "Joyce Taylor", "bandwidth": "200M", "contact": "Mildred Little", "phone": "9-(702)865-7940", "address": "Visalia1402 Union Road", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Quisque id justo sit amet sapien dignissim vestibulum."}}, {"model": "assets.idc", "pk": 25, "fields": {"name": "Nancy Peterson", "bandwidth": "200M", "contact": "Beverly Thompson", "phone": "2-(596)417-2164", "address": "Palm Springs2174 Park Meadow Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante."}}, {"model": "assets.idc", "pk": 26, "fields": {"name": "Irene Boyd", "bandwidth": "200M", "contact": "Gloria Russell", "phone": "3-(671)959-7174", "address": "Tehama162 Hagan Drive", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc."}}, {"model": "assets.idc", "pk": 27, "fields": {"name": "Christina George", "bandwidth": "200M", "contact": "Amanda Welch", "phone": "5-(540)456-3508", "address": "Foster City1 Pine View Hill", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi a ipsum."}}, {"model": "assets.idc", "pk": 28, "fields": {"name": "Maria Romero", "bandwidth": "200M", "contact": "Christine Flores", "phone": "5-(497)579-1735", "address": "San Ramon839 Rigney Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In sagittis dui vel nisl."}}, {"model": "assets.idc", "pk": 29, "fields": {"name": "Sharon Banks", "bandwidth": "200M", "contact": "Lisa Porter", "phone": "5-(191)274-7359", "address": "Emeryville38941 Namekagon Road", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.idc", "pk": 30, "fields": {"name": "Alice Rivera", "bandwidth": "200M", "contact": "Beverly Phillips", "phone": "2-(983)981-7047", "address": "La Quinta2357 Tennessee Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Integer ac leo."}}, {"model": "assets.idc", "pk": 31, "fields": {"name": "Wanda Fisher", "bandwidth": "200M", "contact": "Brenda Simpson", "phone": "3-(130)677-7847", "address": "El Segundo81639 Rigney Alley", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Etiam pretium iaculis justo."}}, {"model": "assets.idc", "pk": 32, "fields": {"name": "Elizabeth Robertson", "bandwidth": "200M", "contact": "Kathryn Franklin", "phone": "1-(400)914-4999", "address": "Alturas8 Rigney Place", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Proin at turpis a pede posuere nonummy."}}, {"model": "assets.idc", "pk": 33, "fields": {"name": "Stephanie Montgomery", "bandwidth": "200M", "contact": "Bonnie Gardner", "phone": "1-(263)067-3698", "address": "Loma Linda452 Cody Park", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In quis justo."}}, {"model": "assets.idc", "pk": 34, "fields": {"name": "Nicole James", "bandwidth": "200M", "contact": "Cheryl Gibson", "phone": "4-(447)941-8369", "address": "Needles390 Dunning Place", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nam nulla."}}, {"model": "assets.idc", "pk": 35, "fields": {"name": "Evelyn Schmidt", "bandwidth": "200M", "contact": "Kelly Reid", "phone": "5-(765)551-1457", "address": "Atascadero890 Schiller Center", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.idc", "pk": 36, "fields": {"name": "Tina Lynch", "bandwidth": "200M", "contact": "Deborah Ray", "phone": "8-(826)087-7821", "address": "Lakeport2 Cherokee Junction", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Praesent id massa id nisl venenatis lacinia."}}, {"model": "assets.idc", "pk": 37, "fields": {"name": "Helen Alvarez", "bandwidth": "200M", "contact": "Bonnie Ruiz", "phone": "0-(558)182-2338", "address": "Yountville069 Lindbergh Drive", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Pellentesque ultrices mattis odio."}}, {"model": "assets.idc", "pk": 38, "fields": {"name": "Kathleen Sanders", "bandwidth": "200M", "contact": "Sandra Burns", "phone": "5-(069)884-2939", "address": "Corning64017 Spenser Point", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": 39, "fields": {"name": "Angela Bennett", "bandwidth": "200M", "contact": "Dorothy Watkins", "phone": "7-(922)982-6990", "address": "Los Angeles6 Myrtle Road", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Donec vitae nisi."}}, {"model": "assets.idc", "pk": 40, "fields": {"name": "Annie Grant", "bandwidth": "200M", "contact": "Joyce Ward", "phone": "4-(605)809-0412", "address": "Dana Point095 Darwin Trail", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla ac enim."}}, {"model": "assets.idc", "pk": 41, "fields": {"name": "Rebecca Perez", "bandwidth": "200M", "contact": "Pamela Scott", "phone": "3-(362)684-4209", "address": "Lomita6735 Havey Alley", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam."}}, {"model": "assets.idc", "pk": 42, "fields": {"name": "Evelyn Perkins", "bandwidth": "200M", "contact": "Lois Davis", "phone": "6-(460)249-7778", "address": "Manteca951 Northridge Lane", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Duis bibendum."}}, {"model": "assets.idc", "pk": 43, "fields": {"name": "Tammy Hunt", "bandwidth": "200M", "contact": "Frances Willis", "phone": "8-(829)687-3226", "address": "Wheatland74328 Gerald Alley", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Vestibulum rutrum rutrum neque."}}, {"model": "assets.idc", "pk": 44, "fields": {"name": "Phyllis Wallace", "bandwidth": "200M", "contact": "Kathleen Schmidt", "phone": "8-(423)910-9929", "address": "Glendora0286 Riverside Court", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio."}}, {"model": "assets.idc", "pk": 45, "fields": {"name": "Ashley Richards", "bandwidth": "200M", "contact": "Ruth Hernandez", "phone": "3-(408)990-6020", "address": "San Marcos16759 Melvin Alley", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla nisl."}}, {"model": "assets.idc", "pk": 46, "fields": {"name": "Angela Black", "bandwidth": "200M", "contact": "Michelle Lewis", "phone": "5-(772)156-9320", "address": "Ojai2 Hallows Point", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla ut erat id mauris vulputate elementum."}}, {"model": "assets.idc", "pk": 47, "fields": {"name": "Patricia Day", "bandwidth": "200M", "contact": "Theresa Bowman", "phone": "7-(002)196-6080", "address": "El Centro0723 Stephen Junction", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Maecenas rhoncus aliquam lacus."}}, {"model": "assets.idc", "pk": 48, "fields": {"name": "Marilyn Carr", "bandwidth": "200M", "contact": "Kathryn Cox", "phone": "0-(625)300-4806", "address": "Barstow9 Erie Point", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Cras in purus eu magna vulputate luctus."}}, {"model": "assets.idc", "pk": 49, "fields": {"name": "Julia Phillips", "bandwidth": "200M", "contact": "Sharon Gilbert", "phone": "3-(225)927-0906", "address": "Nevada City32685 Norway Maple Court", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Duis bibendum."}}, {"model": "assets.idc", "pk": 50, "fields": {"name": "Rachel Medina", "bandwidth": "200M", "contact": "Andrea Tucker", "phone": "2-(618)093-1406", "address": "Santa Rosa16 East Crossing", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo."}}, {"model": "assets.idc", "pk": 51, "fields": {"name": "Janice Jordan", "bandwidth": "200M", "contact": "Phyllis Wood", "phone": "1-(935)916-9512", "address": "St. Helena74019 Old Gate Park", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nunc nisl."}}, {"model": "assets.idc", "pk": 52, "fields": {"name": "Teresa Carr", "bandwidth": "200M", "contact": "Betty Baker", "phone": "4-(748)639-6028", "address": "San Jacinto914 Esch Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Vestibulum rutrum rutrum neque."}}, {"model": "assets.idc", "pk": 53, "fields": {"name": "Jessica Dunn", "bandwidth": "200M", "contact": "Sandra Kelley", "phone": "2-(449)919-3002", "address": "Tehama84 Springs Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec semper sapien a libero."}}, {"model": "assets.idc", "pk": 54, "fields": {"name": "Judy Rodriguez", "bandwidth": "200M", "contact": "Heather Rose", "phone": "2-(726)392-3066", "address": "Redwood City0 Prairieview Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi quis tortor id nulla ultrices aliquet."}}, {"model": "assets.idc", "pk": 55, "fields": {"name": "Christina Bishop", "bandwidth": "200M", "contact": "Paula Jackson", "phone": "8-(451)154-4987", "address": "Simi Valley274 Upham Center", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Fusce posuere felis sed lacus."}}, {"model": "assets.idc", "pk": 56, "fields": {"name": "Catherine Green", "bandwidth": "200M", "contact": "Mildred Kim", "phone": "2-(621)306-2530", "address": "Colusa35467 Waywood Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Maecenas rhoncus aliquam lacus."}}, {"model": "assets.idc", "pk": 57, "fields": {"name": "Angela Fisher", "bandwidth": "200M", "contact": "Theresa Sullivan", "phone": "5-(138)261-5190", "address": "Hemet1 Meadow Vale Way", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Fusce posuere felis sed lacus."}}, {"model": "assets.idc", "pk": 58, "fields": {"name": "Robin Bell", "bandwidth": "200M", "contact": "Mary Carroll", "phone": "8-(377)988-4489", "address": "Dublin85431 Lien Junction", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Vivamus vestibulum sagittis sapien."}}, {"model": "assets.idc", "pk": 59, "fields": {"name": "Irene Gordon", "bandwidth": "200M", "contact": "Catherine Gonzal", "phone": "1-(901)009-2287", "address": "Brentwood54 Thierer Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh."}}, {"model": "assets.idc", "pk": 60, "fields": {"name": "Barbara Jackson", "bandwidth": "200M", "contact": "Evelyn Dunn", "phone": "1-(319)406-6096", "address": "Calabasas6241 Schiller Junction", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In eleifend quam a odio."}}, {"model": "assets.idc", "pk": 61, "fields": {"name": "Joan White", "bandwidth": "200M", "contact": "Doris Barnes", "phone": "1-(149)476-4962", "address": "Los Altos Hills61 Ruskin Junction", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.idc", "pk": 62, "fields": {"name": "Joan Murray", "bandwidth": "200M", "contact": "Doris Butler", "phone": "8-(782)104-3708", "address": "Sebastopol946 Farwell Pass", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante."}}, {"model": "assets.idc", "pk": 63, "fields": {"name": "Julia Garcia", "bandwidth": "200M", "contact": "Amy Pierce", "phone": "2-(051)753-7946", "address": "Yucaipa903 Golf View Drive", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue."}}, {"model": "assets.idc", "pk": 64, "fields": {"name": "Denise Fuller", "bandwidth": "200M", "contact": "Judith Garcia", "phone": "7-(084)936-5516", "address": "Grover Beach19 Haas Place", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede."}}, {"model": "assets.idc", "pk": 65, "fields": {"name": "Cynthia Brown", "bandwidth": "200M", "contact": "Virginia Griffin", "phone": "4-(387)829-9183", "address": "Turlock4965 Homewood Hill", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec ut mauris eget massa tempor convallis."}}, {"model": "assets.idc", "pk": 66, "fields": {"name": "Sharon Morgan", "bandwidth": "200M", "contact": "Marilyn Fernande", "phone": "0-(650)440-4611", "address": "Half Moon Bay3 Roxbury Crossing", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci."}}, {"model": "assets.idc", "pk": 67, "fields": {"name": "Rebecca Andrews", "bandwidth": "200M", "contact": "Louise Mendoza", "phone": "9-(655)731-4026", "address": "Santa Clara06 Commercial Point", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Cras non velit nec nisi vulputate nonummy."}}, {"model": "assets.idc", "pk": 68, "fields": {"name": "Carol Butler", "bandwidth": "200M", "contact": "Lisa Freeman", "phone": "6-(472)790-0053", "address": "Compton51802 Autumn Leaf Center", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Vivamus tortor."}}, {"model": "assets.idc", "pk": 69, "fields": {"name": "Maria Richardson", "bandwidth": "200M", "contact": "Lillian Harper", "phone": "0-(823)972-2571", "address": "Redwood City9821 Dixon Road", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.idc", "pk": 70, "fields": {"name": "Tammy Tucker", "bandwidth": "200M", "contact": "Marie Gordon", "phone": "0-(275)480-6155", "address": "Hollister2 Elmside Way", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla mollis molestie lorem."}}, {"model": "assets.idc", "pk": 71, "fields": {"name": "Debra Banks", "bandwidth": "200M", "contact": "Ruth Hall", "phone": "5-(134)779-6483", "address": "Rocklin85 Continental Circle", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Quisque id justo sit amet sapien dignissim vestibulum."}}, {"model": "assets.idc", "pk": 72, "fields": {"name": "Margaret Howard", "bandwidth": "200M", "contact": "Betty Bennett", "phone": "8-(072)535-7851", "address": "Whittier2906 Scott Drive", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."}}, {"model": "assets.idc", "pk": 73, "fields": {"name": "Lori Bailey", "bandwidth": "200M", "contact": "Janet Nichols", "phone": "8-(657)194-0111", "address": "Carpinteria73 Independence Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nulla nisl."}}, {"model": "assets.idc", "pk": 74, "fields": {"name": "Mary Chavez", "bandwidth": "200M", "contact": "Jennifer Dean", "phone": "6-(651)865-2803", "address": "Larkspur401 Eggendart Pass", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Integer ac neque."}}, {"model": "assets.idc", "pk": 75, "fields": {"name": "Katherine Wagner", "bandwidth": "200M", "contact": "Judy Tucker", "phone": "5-(838)103-8496", "address": "Del Mar6 Derek Court", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Suspendisse ornare consequat lectus."}}, {"model": "assets.idc", "pk": 76, "fields": {"name": "Teresa Patterson", "bandwidth": "200M", "contact": "Diana Ferguson", "phone": "7-(629)104-2252", "address": "Hidden Hills19560 Mcbride Court", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi non quam nec dui luctus rutrum."}}, {"model": "assets.idc", "pk": 77, "fields": {"name": "Maria Burton", "bandwidth": "200M", "contact": "Sandra Davis", "phone": "4-(195)528-1310", "address": "Winters7 Southridge Circle", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Sed sagittis."}}, {"model": "assets.idc", "pk": 78, "fields": {"name": "Denise Peterson", "bandwidth": "200M", "contact": "Carolyn Howard", "phone": "2-(656)945-1578", "address": "San Pablo4805 Springview Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis."}}, {"model": "assets.idc", "pk": 79, "fields": {"name": "Denise Roberts", "bandwidth": "200M", "contact": "Debra Meyer", "phone": "1-(037)432-6818", "address": "Blue Lake8 Elmside Way", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.idc", "pk": 80, "fields": {"name": "Irene Hill", "bandwidth": "200M", "contact": "Judith Schmidt", "phone": "1-(173)689-1874", "address": "Red Bluff62431 Stephen Pass", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Sed sagittis."}}, {"model": "assets.idc", "pk": 81, "fields": {"name": "Barbara Crawford", "bandwidth": "200M", "contact": "Sara Morales", "phone": "6-(701)186-3265", "address": "San Joaquin19 Clarendon Road", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Fusce consequat."}}, {"model": "assets.idc", "pk": 82, "fields": {"name": "Kathleen Lawson", "bandwidth": "200M", "contact": "Sharon Perry", "phone": "4-(486)971-7741", "address": "American Canyon24 New Castle Place", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis."}}, {"model": "assets.idc", "pk": 83, "fields": {"name": "Judy Jordan", "bandwidth": "200M", "contact": "Virginia Ryan", "phone": "9-(417)766-5185", "address": "Calistoga3 School Crossing", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Aenean fermentum."}}, {"model": "assets.idc", "pk": 84, "fields": {"name": "Lois Fernandez", "bandwidth": "200M", "contact": "Doris Rose", "phone": "2-(866)707-3189", "address": "Huntington Beach6 Rutledge Crossing", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Quisque ut erat."}}, {"model": "assets.idc", "pk": 85, "fields": {"name": "Joan Hughes", "bandwidth": "200M", "contact": "Christine Austin", "phone": "8-(659)726-2561", "address": "Cloverdale91 Clyde Gallagher Point", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Aliquam quis turpis eget elit sodales scelerisque."}}, {"model": "assets.idc", "pk": 86, "fields": {"name": "Kathy Green", "bandwidth": "200M", "contact": "Louise Alvarez", "phone": "3-(935)180-7410", "address": "Fort Bragg10684 Dixon Circle", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue."}}, {"model": "assets.idc", "pk": 87, "fields": {"name": "Lisa Jackson", "bandwidth": "200M", "contact": "Denise Reed", "phone": "5-(647)253-2687", "address": "Carson84 Ridgeview Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vivamus tortor."}}, {"model": "assets.idc", "pk": 88, "fields": {"name": "Michelle Myers", "bandwidth": "200M", "contact": "Virginia Griffin", "phone": "0-(100)973-2566", "address": "California City784 Canary Center", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Etiam faucibus cursus urna."}}, {"model": "assets.idc", "pk": 89, "fields": {"name": "Angela Brown", "bandwidth": "200M", "contact": "Paula Anderson", "phone": "2-(744)365-1224", "address": "Rancho Cucamonga3479 Elka Lane", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Etiam pretium iaculis justo."}}, {"model": "assets.idc", "pk": 90, "fields": {"name": "Denise Lewis", "bandwidth": "200M", "contact": "Annie Howard", "phone": "8-(192)316-8876", "address": "Pismo Beach0 Corry Road", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Maecenas rhoncus aliquam lacus."}}, {"model": "assets.idc", "pk": 91, "fields": {"name": "Christine Medina", "bandwidth": "200M", "contact": "Diana Murphy", "phone": "2-(094)397-5078", "address": "Gonzales36509 Farmco Drive", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Pellentesque viverra pede ac diam."}}, {"model": "assets.idc", "pk": 92, "fields": {"name": "Kimberly Ford", "bandwidth": "200M", "contact": "Dorothy Gardner", "phone": "9-(727)736-1781", "address": "Piedmont925 North Circle", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla."}}, {"model": "assets.idc", "pk": 93, "fields": {"name": "Teresa Day", "bandwidth": "200M", "contact": "Angela Hughes", "phone": "1-(120)979-1499", "address": "Petaluma5921 Rockefeller Street", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec vitae nisi."}}, {"model": "assets.idc", "pk": 94, "fields": {"name": "Ruth Freeman", "bandwidth": "200M", "contact": "Anna Morgan", "phone": "1-(802)814-9921", "address": "Oakland24980 Texas Court", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi a ipsum."}}, {"model": "assets.idc", "pk": 95, "fields": {"name": "Louise Greene", "bandwidth": "200M", "contact": "Linda Clark", "phone": "1-(715)563-0269", "address": "Villa Park69 Vahlen Lane", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nulla tellus."}}, {"model": "assets.idc", "pk": 96, "fields": {"name": "Wanda Boyd", "bandwidth": "200M", "contact": "Ruby Perkins", "phone": "9-(683)488-8483", "address": "Upland2 Heath Trail", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Quisque ut erat."}}, {"model": "assets.idc", "pk": 97, "fields": {"name": "Julie James", "bandwidth": "200M", "contact": "Patricia Torres", "phone": "3-(964)789-6804", "address": "Glendale528 Northland Way", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Cras non velit nec nisi vulputate nonummy."}}, {"model": "assets.idc", "pk": 98, "fields": {"name": "Kimberly Hughes", "bandwidth": "200M", "contact": "Lillian Perry", "phone": "3-(849)657-7162", "address": "Carlsbad134 Lyons Court", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Ut at dolor quis odio consequat varius."}}, {"model": "assets.idc", "pk": 99, "fields": {"name": "Dorothy Mitchell", "bandwidth": "200M", "contact": "Ann Stone", "phone": "5-(191)336-9238", "address": "Clovis62 Twin Pines Park", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Praesent id massa id nisl venenatis lacinia."}}, {"model": "assets.idc", "pk": 100, "fields": {"name": "Lisa Daniels", "bandwidth": "200M", "contact": "Ann Holmes", "phone": "5-(311)568-3119", "address": "Lakeport1352 Michigan Road", "intranet": "", "extranet": "", "date_created": "2016-11-25T15:09:51Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Etiam pretium iaculis justo."}}, {"model": "assets.adminuser", "pk": 1, "fields": {"name": "Jennifer Johnston", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.InBoYXNlbGx1cyI.Zn-tLzwjTOOALDdNqorcCv8dpUlJWwDa8PhPqRVfR7s", "_private_key": null, "_public_key": "", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 2, "fields": {"name": "Frances Burke", "username": "cynthia", "_password": "eyJhbGciOiJIUzI1NiJ9.InZvbHV0cGF0Ig.F7uCpzruZ4ZGBU3VNWStgVJgh0kXl9bHDicT6aRqSys", "_private_key": null, "_public_key": "", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 3, "fields": {"name": "Jessica Banks", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0aWFtIg.QEs0SICruIrhYPzqpEG9iKLje7wzoW601XZyyGFsWnk", "_private_key": null, "_public_key": "", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 4, "fields": {"name": "Lois Murphy", "username": "ruth", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "_private_key": null, "_public_key": "", "comment": "Etiam pretium iaculis justo.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 5, "fields": {"name": "Deborah Bell", "username": "shirley", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "_private_key": null, "_public_key": "", "comment": "Nulla mollis molestie lorem.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 6, "fields": {"name": "Judy Larson", "username": "annie", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "_private_key": null, "_public_key": "", "comment": "In quis justo.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 7, "fields": {"name": "Rachel Wallace", "username": "catherine", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lYyI.LKXtwRVgPGpIFsCWDaqgz1FeQ0uuEIthkh3bbD8r6bI", "_private_key": null, "_public_key": "", "comment": "In sagittis dui vel nisl.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 8, "fields": {"name": "Sarah Simpson", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bmMi.QZCxEf3ITmu1xFtZxZL7B-kLe61BCyaRJg_ryZUsHdw", "_private_key": null, "_public_key": "", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 9, "fields": {"name": "Ruth Chapman", "username": "mary", "_password": "eyJhbGciOiJIUzI1NiJ9.InVybmEi.-R5jFyw4cZP7PaMBzGG2dlnRQj0rpscFmJwAwJ6zLhY", "_private_key": null, "_public_key": "", "comment": "Sed sagittis.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 10, "fields": {"name": "Betty Sullivan", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlbSI.q-swGD6R0EwFfj3GvW7opSLXFGPAGIRB_cDeho2N0oc", "_private_key": null, "_public_key": "", "comment": "Nulla nisl.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 11, "fields": {"name": "Marie Thompson", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnZhbGxpcyI.B_NDb4qHOmbgsEcxTJAb9xrXBHPzya03jDjrKhXztJU", "_private_key": null, "_public_key": "", "comment": "Praesent blandit lacinia erat.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 12, "fields": {"name": "Bonnie Gray", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.InZvbHV0cGF0Ig.F7uCpzruZ4ZGBU3VNWStgVJgh0kXl9bHDicT6aRqSys", "_private_key": null, "_public_key": "", "comment": "Mauris ullamcorper purus sit amet nulla.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 13, "fields": {"name": "Julie Bailey", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aSI.AYqnix4dp06WLJ645L4MAveLycKVrZSyNjJnIq0fU2g", "_private_key": null, "_public_key": "", "comment": "Phasellus sit amet erat.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 14, "fields": {"name": "Donna West", "username": "janet", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Maecenas rhoncus aliquam lacus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 15, "fields": {"name": "Ruth Jackson", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pYmgi.xs16dvVvTgeK6P4sCntrlOibiQ6PQd9Spdj68ir-ctY", "_private_key": null, "_public_key": "", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 16, "fields": {"name": "Louise Wood", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "_private_key": null, "_public_key": "", "comment": "Proin risus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 17, "fields": {"name": "Debra Flores", "username": "catherine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "_private_key": null, "_public_key": "", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 18, "fields": {"name": "Martha Watson", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjY3Vtc2FuIg.NEwnlPlaG9Pa0nEXxhV8A18g-06uqxUCQ4zExhAPf3w", "_private_key": null, "_public_key": "", "comment": "Nunc nisl.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 19, "fields": {"name": "Cynthia Johnson", "username": "sharon", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "_private_key": null, "_public_key": "", "comment": "Morbi ut odio.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 20, "fields": {"name": "Julia Lynch", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "_private_key": null, "_public_key": "", "comment": "Proin risus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 21, "fields": {"name": "Doris Hanson", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvcnRhIg.pxvE3o1p_qKNAwmuEgAnFm5PtvPQtCGq4G9zw7PdnKM", "_private_key": null, "_public_key": "", "comment": "Suspendisse potenti.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 22, "fields": {"name": "Pamela Hansen", "username": "jennifer", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "_private_key": null, "_public_key": "", "comment": "Maecenas tincidunt lacus at velit.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 23, "fields": {"name": "Annie Stone", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "_private_key": null, "_public_key": "", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 24, "fields": {"name": "Andrea Gray", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhbSI.UkSJJgT55ZW1rNFGTaAjz_F8eywms6GmHsQIObRGpxk", "_private_key": null, "_public_key": "", "comment": "Morbi a ipsum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 25, "fields": {"name": "Martha Peters", "username": "angela", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvcnR0aXRvciI.yYTCpVrahrmYF_MZecG2-63m96KAf7yAzZqmkq8J_V8", "_private_key": null, "_public_key": "", "comment": "Nam tristique tortor eu pede.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 26, "fields": {"name": "Ruth Brown", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1pIg.9Z3NScNPiRxvreLu8pDuhMVg8PIHs91k9_ntiUwuBPQ", "_private_key": null, "_public_key": "", "comment": "Duis bibendum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 27, "fields": {"name": "Donna Lewis", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "_private_key": null, "_public_key": "", "comment": "Maecenas tincidunt lacus at velit.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 28, "fields": {"name": "Ruth Lee", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lYyI.LKXtwRVgPGpIFsCWDaqgz1FeQ0uuEIthkh3bbD8r6bI", "_private_key": null, "_public_key": "", "comment": "Suspendisse ornare consequat lectus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 29, "fields": {"name": "Shirley Williamson", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 30, "fields": {"name": "Lisa Richardson", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpZ3VsYSI.aZGEVUuvvGP8M_brQEnU40wGGh4xDoW5jzwki7DPGg0", "_private_key": null, "_public_key": "", "comment": "Morbi ut odio.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 31, "fields": {"name": "Sara Romero", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5vbiI.pwMNExwLCmk9BWKxw3hxw9K9h0YRh102FvLNRKTumRs", "_private_key": null, "_public_key": "", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 32, "fields": {"name": "Kimberly Lawson", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXMi.sr0cWp1ZfjO1QWimGNuf1x_MHaNsiEFy7_UxzlJkIfY", "_private_key": null, "_public_key": "", "comment": "Donec dapibus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 33, "fields": {"name": "Michelle Bradley", "username": "brenda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvcmVtIg.oO5aOD2S0EIsqSl9OTTabrNpCWrG3T8nDgA_4OqrsHE", "_private_key": null, "_public_key": "", "comment": "Quisque ut erat.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 34, "fields": {"name": "Debra King", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbGVzdGllIg.3Ati0FpOQfWlYUHeXFmjZ1KOsOaAGFCSfit5ksNR9kE", "_private_key": null, "_public_key": "", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 35, "fields": {"name": "Ruby Meyer", "username": "christine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "_private_key": null, "_public_key": "", "comment": "Mauris sit amet eros.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 36, "fields": {"name": "Jessica Harper", "username": "barbara", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlbXBlciI.M5t2pcCxYWTXgJ_uQtXTa9vfZ3MoWF2KT0MQJChOHP8", "_private_key": null, "_public_key": "", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 37, "fields": {"name": "Mary Bell", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bmMi.QZCxEf3ITmu1xFtZxZL7B-kLe61BCyaRJg_ryZUsHdw", "_private_key": null, "_public_key": "", "comment": "Duis bibendum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 38, "fields": {"name": "Sarah Butler", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlZCI.8x8y146cvv6phwCp2Q53l_zeUmW1oZkRrbMZG3kbs3w", "_private_key": null, "_public_key": "", "comment": "Cras pellentesque volutpat dui.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 39, "fields": {"name": "Katherine Austin", "username": "amanda", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "_private_key": null, "_public_key": "", "comment": "Duis ac nibh.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 40, "fields": {"name": "Nicole Richardson", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsaXQi.a7GlyHrv2neaOA77QcRbPfCEGs0UbmGyg9cV3trKSCg", "_private_key": null, "_public_key": "", "comment": "Nulla facilisi.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 41, "fields": {"name": "Angela Gomez", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpY3R1bXN0Ig.owyqiwsx1v5W-7FCwPxXX8ieVl7N7sILLI3SaGMXdn8", "_private_key": null, "_public_key": "", "comment": "Donec dapibus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 42, "fields": {"name": "Pamela Lopez", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImhhYyI.NqFq8iVrrba9qnYT02so-eAKvqMQUN0EXT1JGPAf-EE", "_private_key": null, "_public_key": "", "comment": "Nulla tempus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 43, "fields": {"name": "Andrea Martinez", "username": "linda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbmRpbWVudHVtIg.n0KeFDo_o3Hr1cl0P1X3CAza029GFd1GFLthcxjSCgI", "_private_key": null, "_public_key": "", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 44, "fields": {"name": "Phyllis Gordon", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlZCI.8x8y146cvv6phwCp2Q53l_zeUmW1oZkRrbMZG3kbs3w", "_private_key": null, "_public_key": "", "comment": "Aliquam sit amet diam in magna bibendum imperdiet.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 45, "fields": {"name": "Jane Baker", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXMi.sr0cWp1ZfjO1QWimGNuf1x_MHaNsiEFy7_UxzlJkIfY", "_private_key": null, "_public_key": "", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 46, "fields": {"name": "Judy Webb", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InB1cnVzIg.mQIecvkKZ9Kr449nF9gyvo0sVXOqOt2yf-bgvaC8hIo", "_private_key": null, "_public_key": "", "comment": "Vestibulum rutrum rutrum neque.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 47, "fields": {"name": "Beverly Rose", "username": "lois", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5vbiI.pwMNExwLCmk9BWKxw3hxw9K9h0YRh102FvLNRKTumRs", "_private_key": null, "_public_key": "", "comment": "Phasellus in felis.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 48, "fields": {"name": "Denise Lee", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFlbmVhbiI.bmZGuIfjr5BAmIBuL3RLAL9zT2H1bTiHdZ9350HzSeg", "_private_key": null, "_public_key": "", "comment": "Aenean lectus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 49, "fields": {"name": "Mary Kelly", "username": "jane", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0aWFtIg.QEs0SICruIrhYPzqpEG9iKLje7wzoW601XZyyGFsWnk", "_private_key": null, "_public_key": "", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 50, "fields": {"name": "Julia Butler", "username": "ashley", "_password": "eyJhbGciOiJIUzI1NiJ9.InRlbXB1cyI.InhJYK-kSadev_OeL8065VO6arpVpq6Ns-7Qcs6WkrU", "_private_key": null, "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 51, "fields": {"name": "Elizabeth Hansen", "username": "betty", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "_private_key": null, "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 52, "fields": {"name": "Dorothy Ramos", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhcGllbiI.FV7Fd4y2296g887c98VrXRInZMVQulodf4KOSrBCWog", "_private_key": null, "_public_key": "", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 53, "fields": {"name": "Ruth Knight", "username": "marie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRvbG9yIg.6-B7AtjwRtbLWBw3cOl1AmdKgGqNOg3JxMnsEk3sI-Y", "_private_key": null, "_public_key": "", "comment": "Nam nulla.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 54, "fields": {"name": "Maria Knight", "username": "ruth", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZlbGlzIg.vyOH9A5Es37uybnFippSOXhuSxREYEh-G5qHI8UrDRY", "_private_key": null, "_public_key": "", "comment": "Curabitur at ipsum ac tellus semper interdum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 55, "fields": {"name": "Martha Ray", "username": "nicole", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvc3VlcmUi.HiqInzbNn9wLyMamRM3OfwBYJ9q4n297DvZzFFDwN7w", "_private_key": null, "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 56, "fields": {"name": "Andrea Turner", "username": "norma", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": null, "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 57, "fields": {"name": "Kathryn Myers", "username": "shirley", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Integer non velit.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 58, "fields": {"name": "Jennifer Hart", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXMi.sr0cWp1ZfjO1QWimGNuf1x_MHaNsiEFy7_UxzlJkIfY", "_private_key": null, "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 59, "fields": {"name": "Joan Stephens", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pYmgi.xs16dvVvTgeK6P4sCntrlOibiQ6PQd9Spdj68ir-ctY", "_private_key": null, "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 60, "fields": {"name": "Anne Parker", "username": "jennifer", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbmRpbWVudHVtIg.n0KeFDo_o3Hr1cl0P1X3CAza029GFd1GFLthcxjSCgI", "_private_key": null, "_public_key": "", "comment": "Phasellus in felis.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 61, "fields": {"name": "Paula Hunt", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.InRlbXB1cyI.InhJYK-kSadev_OeL8065VO6arpVpq6Ns-7Qcs6WkrU", "_private_key": null, "_public_key": "", "comment": "Curabitur convallis.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 62, "fields": {"name": "Theresa Bryant", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbGVzdGllIg.3Ati0FpOQfWlYUHeXFmjZ1KOsOaAGFCSfit5ksNR9kE", "_private_key": null, "_public_key": "", "comment": "Suspendisse ornare consequat lectus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 63, "fields": {"name": "Virginia Tucker", "username": "katherine", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "_private_key": null, "_public_key": "", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 64, "fields": {"name": "Mary Evans", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.InB1cnVzIg.mQIecvkKZ9Kr449nF9gyvo0sVXOqOt2yf-bgvaC8hIo", "_private_key": null, "_public_key": "", "comment": "Nunc rhoncus dui vel sem.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 65, "fields": {"name": "Jennifer Chapman", "username": "kathryn", "_password": "eyJhbGciOiJIUzI1NiJ9.Imx1Y3R1cyI.HgJMJ_hzKIXE6FmvnIJpfQbY4kKS5qd1c2IJ_GxPdqQ", "_private_key": null, "_public_key": "", "comment": "Suspendisse potenti.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 66, "fields": {"name": "Lois Gordon", "username": "stephanie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "_private_key": null, "_public_key": "", "comment": "Duis aliquam convallis nunc.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 67, "fields": {"name": "Ann Alvarez", "username": "janet", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "_private_key": null, "_public_key": "", "comment": "Nulla ut erat id mauris vulputate elementum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 68, "fields": {"name": "Elizabeth Martin", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvc3VlcmUi.HiqInzbNn9wLyMamRM3OfwBYJ9q4n297DvZzFFDwN7w", "_private_key": null, "_public_key": "", "comment": "Etiam justo.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 69, "fields": {"name": "Jessica Ferguson", "username": "lori", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "_private_key": null, "_public_key": "", "comment": "Donec posuere metus vitae ipsum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 70, "fields": {"name": "Frances Freeman", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 71, "fields": {"name": "Denise Harvey", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InByZXRpdW0i.i1jTJ_roLe3P5o3qAjQ2gysEclX-UFZIuAT4IPM6fgY", "_private_key": null, "_public_key": "", "comment": "Vivamus vestibulum sagittis sapien.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 72, "fields": {"name": "Kathryn Kennedy", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxhY3VzIg.5qb9T3IIsVs5n_iBbzv8nrWqk09znRmR7jt78D3ReH0", "_private_key": null, "_public_key": "", "comment": "Suspendisse potenti.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 73, "fields": {"name": "Emily Marshall", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXMi.sr0cWp1ZfjO1QWimGNuf1x_MHaNsiEFy7_UxzlJkIfY", "_private_key": null, "_public_key": "", "comment": "Duis mattis egestas metus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 74, "fields": {"name": "Linda Harrison", "username": "kathryn", "_password": "eyJhbGciOiJIUzI1NiJ9.InByaW1pcyI.OAlhMPsCXTLC41MGIrALVio6iqoIwHbHFj-r4Kg4lso", "_private_key": null, "_public_key": "", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 75, "fields": {"name": "Amy Hunter", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbGVzdGllIg.3Ati0FpOQfWlYUHeXFmjZ1KOsOaAGFCSfit5ksNR9kE", "_private_key": null, "_public_key": "", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 76, "fields": {"name": "Doris Kelly", "username": "evelyn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "_private_key": null, "_public_key": "", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 77, "fields": {"name": "Betty Nichols", "username": "stephanie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "_private_key": null, "_public_key": "", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 78, "fields": {"name": "Rachel Mendoza", "username": "marie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "_private_key": null, "_public_key": "", "comment": "Sed ante.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 79, "fields": {"name": "Laura Dixon", "username": "evelyn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpYW0i.ptlstDxIX3roDa9-XgVcwFcuugOtvaVsjm7xvHG29s4", "_private_key": null, "_public_key": "", "comment": "Pellentesque at nulla.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 80, "fields": {"name": "Patricia Burton", "username": "amy", "_password": "eyJhbGciOiJIUzI1NiJ9.Imp1c3RvIg.OGeg0BhoHWufHxSObxdYqHFC3zur8llMFj8veLxbAFY", "_private_key": null, "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 81, "fields": {"name": "Denise Carter", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV1Ig.k74Kbv7It_-9OcFde0stLpx06suYL5M71w_MTMaDa9M", "_private_key": null, "_public_key": "", "comment": "Etiam vel augue.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 82, "fields": {"name": "Nicole Howard", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1YW0i.jyCCTLkqnAmQ1fjCgxcCdDDxYQhwb20VCeJO2dN0I-s", "_private_key": null, "_public_key": "", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 83, "fields": {"name": "Tina Robinson", "username": "annie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjY3Vtc2FuIg.NEwnlPlaG9Pa0nEXxhV8A18g-06uqxUCQ4zExhAPf3w", "_private_key": null, "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 84, "fields": {"name": "Susan Greene", "username": "virginia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZWNlbmFzIg.QtbNPwgI6icRXHQXQ1Mc58T-B5CY1Drv7XR_3bas3QY", "_private_key": null, "_public_key": "", "comment": "Quisque porta volutpat erat.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 85, "fields": {"name": "Emily Torres", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1cmFlOyI.YXVQboZMyJCScWjZTO7GvepNEo2dJ4h46NF_lOFDXbI", "_private_key": null, "_public_key": "", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 86, "fields": {"name": "Lisa Brooks", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bmMi.QZCxEf3ITmu1xFtZxZL7B-kLe61BCyaRJg_ryZUsHdw", "_private_key": null, "_public_key": "", "comment": "Morbi ut odio.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 87, "fields": {"name": "Tina Butler", "username": "anna", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "_private_key": null, "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 88, "fields": {"name": "Michelle Meyer", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZ1c2NlIg.uqw6_p8tfiGPkV4IRtBTFE_YTVbOixNTktMa4AAMrbs", "_private_key": null, "_public_key": "", "comment": "Duis ac nibh.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 89, "fields": {"name": "Jean Carroll", "username": "stephanie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 90, "fields": {"name": "Patricia Turner", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Duis ac nibh.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 91, "fields": {"name": "Michelle Pierce", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "_private_key": null, "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 92, "fields": {"name": "Marilyn Holmes", "username": "sharon", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjY3Vtc2FuIg.NEwnlPlaG9Pa0nEXxhV8A18g-06uqxUCQ4zExhAPf3w", "_private_key": null, "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 93, "fields": {"name": "Christine Montgomery", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlbyI.qTN86wuszuz1DJYzlN4xnIOKk4BnSDGx-SrJn18aLxE", "_private_key": null, "_public_key": "", "comment": "Donec semper sapien a libero.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 94, "fields": {"name": "Theresa Little", "username": "barbara", "_password": "eyJhbGciOiJIUzI1NiJ9.InB1bHZpbmFyIg.VUmNISJr2aidvuyDAGk-BWrcNGXdv12IcHpnH2Kn4dw", "_private_key": null, "_public_key": "", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 95, "fields": {"name": "Kathryn Barnes", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvYm9ydGlzIg.RKcewrE2glcmJtRtDpTt8WptvFfwUjhUDMlcdl1Shuw", "_private_key": null, "_public_key": "", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 96, "fields": {"name": "Ruth Gilbert", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbmVuYXRpcyI.MHDovdAZ1Y6dl56pKsuIia06fJzbbnMAg6H7y3IQHcE", "_private_key": null, "_public_key": "", "comment": "Nullam varius.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 97, "fields": {"name": "Doris Woods", "username": "betty", "_password": "eyJhbGciOiJIUzI1NiJ9.InByYWVzZW50Ig.wpw9M66GI_YQwNBZmSHBmG2W_92MvQzak4XZHDk7T4c", "_private_key": null, "_public_key": "", "comment": "Pellentesque eget nunc.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 98, "fields": {"name": "Joyce Rice", "username": "pamela", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlZCI.8x8y146cvv6phwCp2Q53l_zeUmW1oZkRrbMZG3kbs3w", "_private_key": null, "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 99, "fields": {"name": "Sarah Romero", "username": "louise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1YW0i.ROd2JUuL9lh3hBqwH2HJ7tf8zsYXtJR776EsV1Jpvnw", "_private_key": null, "_public_key": "", "comment": "Nullam molestie nibh in lectus.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 100, "fields": {"name": "Ruth Burke", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImludGVyZHVtIg.UHlxBZLjoTZbl5ZIhbnQ1sBwbWSntPA0eH2R4BQWoB0", "_private_key": null, "_public_key": "", "comment": "Etiam justo.", "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake"}}, {"model": "assets.systemuser", "pk": 1, "fields": {"name": "Laura Miller", "username": "annie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRvbG9yIg.6-B7AtjwRtbLWBw3cOl1AmdKgGqNOg3JxMnsEk3sI-Y", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Quisque porta volutpat erat."}}, {"model": "assets.systemuser", "pk": 2, "fields": {"name": "Rebecca Greene", "username": "sharon", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdXJpcyI.jcR8xjLt9WrET56Nes7q2CdkHYJAWb7Y2d--saQSumY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Pellentesque viverra pede ac diam."}}, {"model": "assets.systemuser", "pk": 3, "fields": {"name": "Linda Cox", "username": "robin", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Proin risus."}}, {"model": "assets.systemuser", "pk": 4, "fields": {"name": "Brenda Crawford", "username": "martha", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsbGFtY29ycGVyIg.Ere4LUljW2jSMrLsaH9VvwQB--Prerb_h0knRRiHMI0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Praesent blandit lacinia erat."}}, {"model": "assets.systemuser", "pk": 5, "fields": {"name": "Carol Gordon", "username": "dorothy", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdmFtdXMi.RbLbJ7X5YWe_D8gaSitbKfO_QqGVcW4iUu3TYdjIPKI", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Cras pellentesque volutpat dui."}}, {"model": "assets.systemuser", "pk": 6, "fields": {"name": "Sharon Burke", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpZ3VsYSI.aZGEVUuvvGP8M_brQEnU40wGGh4xDoW5jzwki7DPGg0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Duis consequat dui nec nisi volutpat eleifend."}}, {"model": "assets.systemuser", "pk": 7, "fields": {"name": "Andrea White", "username": "jennifer", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pYmgi.xs16dvVvTgeK6P4sCntrlOibiQ6PQd9Spdj68ir-ctY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros."}}, {"model": "assets.systemuser", "pk": 8, "fields": {"name": "Shirley Mitchell", "username": "ruth", "_password": "eyJhbGciOiJIUzI1NiJ9.ImhhYyI.NqFq8iVrrba9qnYT02so-eAKvqMQUN0EXT1JGPAf-EE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Phasellus sit amet erat."}}, {"model": "assets.systemuser", "pk": 9, "fields": {"name": "Amy Bradley", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvcnR0aXRvciI.yYTCpVrahrmYF_MZecG2-63m96KAf7yAzZqmkq8J_V8", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede."}}, {"model": "assets.systemuser", "pk": 10, "fields": {"name": "Andrea Coleman", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Morbi vel lectus in quam fringilla rhoncus."}}, {"model": "assets.systemuser", "pk": 11, "fields": {"name": "Bonnie Harrison", "username": "joan", "_password": "eyJhbGciOiJIUzI1NiJ9.InR1cnBpcyI.S-5yYJpmB1hT7Tl1JIPCGsXZ1ATf1_uaCJq1VwSGaPg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Aenean fermentum."}}, {"model": "assets.systemuser", "pk": 12, "fields": {"name": "Linda Willis", "username": "catherine", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.systemuser", "pk": 13, "fields": {"name": "Irene Dixon", "username": "gloria", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlbGxlbnRlc3F1ZSI.3yrIK8gbDmlyR-M0hLUJmm7e0Tqrq3F-2hfrwlnJXQ8", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante."}}, {"model": "assets.systemuser", "pk": 14, "fields": {"name": "Nancy Patterson", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdHRpcyI.5Sp7NUJKOQNxv-1xJ-zA3A3pUkl2vnOfD3Z5g9LiFtQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Proin interdum mauris non ligula pellentesque ultrices."}}, {"model": "assets.systemuser", "pk": 15, "fields": {"name": "Patricia Hunter", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImhhYyI.NqFq8iVrrba9qnYT02so-eAKvqMQUN0EXT1JGPAf-EE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Quisque ut erat."}}, {"model": "assets.systemuser", "pk": 16, "fields": {"name": "Tina Green", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.systemuser", "pk": 17, "fields": {"name": "Jennifer Baker", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhbSI.UkSJJgT55ZW1rNFGTaAjz_F8eywms6GmHsQIObRGpxk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.systemuser", "pk": 18, "fields": {"name": "Anne Watson", "username": "sarah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvcmVtIg.oO5aOD2S0EIsqSl9OTTabrNpCWrG3T8nDgA_4OqrsHE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Aliquam sit amet diam in magna bibendum imperdiet."}}, {"model": "assets.systemuser", "pk": 19, "fields": {"name": "Deborah Alvarez", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.InJob25jdXMi.zc47wfesB5fcJ-oBaHagDTV8j2ml3oDL---yZnXFmX4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.systemuser", "pk": 20, "fields": {"name": "Carol Carter", "username": "christine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Praesent lectus."}}, {"model": "assets.systemuser", "pk": 21, "fields": {"name": "Alice Scott", "username": "lillian", "_password": "eyJhbGciOiJIUzI1NiJ9.InNjZWxlcmlzcXVlIg.Oi9UmUd0t_qJrjUo49Bp5IiIgbnBF81zZ5Rt1BCvYd4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus."}}, {"model": "assets.systemuser", "pk": 22, "fields": {"name": "Norma Lopez", "username": "susan", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Aenean lectus."}}, {"model": "assets.systemuser", "pk": 23, "fields": {"name": "Helen Romero", "username": "shirley", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZWNlbmFzIg.QtbNPwgI6icRXHQXQ1Mc58T-B5CY1Drv7XR_3bas3QY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Quisque ut erat."}}, {"model": "assets.systemuser", "pk": 24, "fields": {"name": "Christine Spencer", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnZhbGxpcyI.B_NDb4qHOmbgsEcxTJAb9xrXBHPzya03jDjrKhXztJU", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.systemuser", "pk": 25, "fields": {"name": "Brenda Johnson", "username": "doris", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Ut tellus."}}, {"model": "assets.systemuser", "pk": 26, "fields": {"name": "Michelle Lynch", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus."}}, {"model": "assets.systemuser", "pk": 27, "fields": {"name": "Julie Cruz", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aXMi.KS4EioZYRU2pQ7fIKt0kMbzHNljZMDpfMtimVI_Vjxw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Nunc rhoncus dui vel sem."}}, {"model": "assets.systemuser", "pk": 28, "fields": {"name": "Janet Bishop", "username": "jean", "_password": "eyJhbGciOiJIUzI1NiJ9.InByYWVzZW50Ig.wpw9M66GI_YQwNBZmSHBmG2W_92MvQzak4XZHDk7T4c", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est."}}, {"model": "assets.systemuser", "pk": 29, "fields": {"name": "Rose Turner", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.InZvbHV0cGF0Ig.F7uCpzruZ4ZGBU3VNWStgVJgh0kXl9bHDicT6aRqSys", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Proin eu mi."}}, {"model": "assets.systemuser", "pk": 30, "fields": {"name": "Susan Ferguson", "username": "lois", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aXMi.KS4EioZYRU2pQ7fIKt0kMbzHNljZMDpfMtimVI_Vjxw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Integer ac neque."}}, {"model": "assets.systemuser", "pk": 31, "fields": {"name": "Robin Hudson", "username": "anne", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1YW0i.ROd2JUuL9lh3hBqwH2HJ7tf8zsYXtJR776EsV1Jpvnw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Cras pellentesque volutpat dui."}}, {"model": "assets.systemuser", "pk": 32, "fields": {"name": "Deborah Thompson", "username": "kelly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla."}}, {"model": "assets.systemuser", "pk": 33, "fields": {"name": "Susan Gilbert", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZWNlbmFzIg.QtbNPwgI6icRXHQXQ1Mc58T-B5CY1Drv7XR_3bas3QY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Curabitur convallis."}}, {"model": "assets.systemuser", "pk": 34, "fields": {"name": "Marie Armstrong", "username": "sara", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1cnN1cyI.9mxH1HpaEaQw85lLa7DsTGky0cMIfTCNruY1ev1QuNw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Vivamus in felis eu sapien cursus vestibulum."}}, {"model": "assets.systemuser", "pk": 35, "fields": {"name": "Lois Ruiz", "username": "judith", "_password": "eyJhbGciOiJIUzI1NiJ9.InB1cnVzIg.mQIecvkKZ9Kr449nF9gyvo0sVXOqOt2yf-bgvaC8hIo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Nulla ac enim."}}, {"model": "assets.systemuser", "pk": 36, "fields": {"name": "Wanda Mitchell", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1pIg.9Z3NScNPiRxvreLu8pDuhMVg8PIHs91k9_ntiUwuBPQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "In congue."}}, {"model": "assets.systemuser", "pk": 37, "fields": {"name": "Susan Fox", "username": "ashley", "_password": "eyJhbGciOiJIUzI1NiJ9.InZvbHV0cGF0Ig.F7uCpzruZ4ZGBU3VNWStgVJgh0kXl9bHDicT6aRqSys", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "In eleifend quam a odio."}}, {"model": "assets.systemuser", "pk": 38, "fields": {"name": "Debra James", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Praesent lectus."}}, {"model": "assets.systemuser", "pk": 39, "fields": {"name": "Betty Campbell", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.InBsYWNlcmF0Ig.kxIB8lu5D1QiRe0-JXrZGDOGqVX4llGR36rV7ZidWTk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem."}}, {"model": "assets.systemuser", "pk": 40, "fields": {"name": "Heather Campbell", "username": "sharon", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Nulla facilisi."}}, {"model": "assets.systemuser", "pk": 41, "fields": {"name": "Stephanie Black", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.ImludGVyZHVtIg.UHlxBZLjoTZbl5ZIhbnQ1sBwbWSntPA0eH2R4BQWoB0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros."}}, {"model": "assets.systemuser", "pk": 42, "fields": {"name": "Kathleen Fernandez", "username": "anne", "_password": "eyJhbGciOiJIUzI1NiJ9.ImludGVyZHVtIg.UHlxBZLjoTZbl5ZIhbnQ1sBwbWSntPA0eH2R4BQWoB0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Mauris lacinia sapien quis libero."}}, {"model": "assets.systemuser", "pk": 43, "fields": {"name": "Anne Hamilton", "username": "betty", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2ki.n-Lu5aSHiUvxHk4WAgVl5rBKooF4O9p22BV1JS22TCc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Donec semper sapien a libero."}}, {"model": "assets.systemuser", "pk": 44, "fields": {"name": "Joan Burke", "username": "betty", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlcXVhdCI.vLRDCJLof2aVuDu2Ozh-ogfuPPmKCcg9NxF47WcQqig", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Vivamus in felis eu sapien cursus vestibulum."}}, {"model": "assets.systemuser", "pk": 45, "fields": {"name": "Mildred Hunt", "username": "anna", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlbSI.q-swGD6R0EwFfj3GvW7opSLXFGPAGIRB_cDeho2N0oc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "In congue."}}, {"model": "assets.systemuser", "pk": 46, "fields": {"name": "Joyce Perry", "username": "sarah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1cnN1cyI.9mxH1HpaEaQw85lLa7DsTGky0cMIfTCNruY1ev1QuNw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Phasellus sit amet erat."}}, {"model": "assets.systemuser", "pk": 47, "fields": {"name": "Ruby Perez", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRvbmVjIg.ETQR821NXkrnq13LeE4BygCe_fvaFDJggsQ1ghFFfNU", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Vestibulum rutrum rutrum neque."}}, {"model": "assets.systemuser", "pk": 48, "fields": {"name": "Heather Parker", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXMi.sr0cWp1ZfjO1QWimGNuf1x_MHaNsiEFy7_UxzlJkIfY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.systemuser", "pk": 49, "fields": {"name": "Judy Jones", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.InJob25jdXMi.zc47wfesB5fcJ-oBaHagDTV8j2ml3oDL---yZnXFmX4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci."}}, {"model": "assets.systemuser", "pk": 50, "fields": {"name": "Irene Gordon", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbmRpbWVudHVtIg.n0KeFDo_o3Hr1cl0P1X3CAza029GFd1GFLthcxjSCgI", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci."}}, {"model": "assets.systemuser", "pk": 51, "fields": {"name": "Wanda Reyes", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5hc2NldHVyIg.38imbSTbL6Rd0WDod36c1lGl1uQQNH_uBtIQflPhFHo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Pellentesque eget nunc."}}, {"model": "assets.systemuser", "pk": 52, "fields": {"name": "Mary Torres", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.ImltcGVyZGlldCI._XQV1N-Rnln6cTJCYdC29156Dpw77ZWlw3qvZlLQ0zY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue."}}, {"model": "assets.systemuser", "pk": 53, "fields": {"name": "Pamela Sims", "username": "norma", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Quisque porta volutpat erat."}}, {"model": "assets.systemuser", "pk": 54, "fields": {"name": "Maria Phillips", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.Imp1c3RvIg.OGeg0BhoHWufHxSObxdYqHFC3zur8llMFj8veLxbAFY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.systemuser", "pk": 55, "fields": {"name": "Linda Medina", "username": "christine", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVzdCI.kqn80ndZDQ0Gc7AnT112KsF2joNDpppfPsuPxS6cOwk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.systemuser", "pk": 56, "fields": {"name": "Amanda Meyer", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvc3VlcmUi.HiqInzbNn9wLyMamRM3OfwBYJ9q4n297DvZzFFDwN7w", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Proin at turpis a pede posuere nonummy."}}, {"model": "assets.systemuser", "pk": 57, "fields": {"name": "Elizabeth Tucker", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFkaXBpc2Npbmci.xA0pKz_H20na1idlwyUjLasNezP4HEJunJ6DQfKy36U", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem."}}, {"model": "assets.systemuser", "pk": 58, "fields": {"name": "Tina Castillo", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Cras non velit nec nisi vulputate nonummy."}}, {"model": "assets.systemuser", "pk": 59, "fields": {"name": "Sandra Williams", "username": "barbara", "_password": "eyJhbGciOiJIUzI1NiJ9.InByaW1pcyI.OAlhMPsCXTLC41MGIrALVio6iqoIwHbHFj-r4Kg4lso", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.systemuser", "pk": 60, "fields": {"name": "Rachel Jackson", "username": "amanda", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdXJpcyI.jcR8xjLt9WrET56Nes7q2CdkHYJAWb7Y2d--saQSumY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Sed ante."}}, {"model": "assets.systemuser", "pk": 61, "fields": {"name": "Andrea Hart", "username": "anne", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1YW0i.jyCCTLkqnAmQ1fjCgxcCdDDxYQhwb20VCeJO2dN0I-s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Donec vitae nisi."}}, {"model": "assets.systemuser", "pk": 62, "fields": {"name": "Anna Rodriguez", "username": "betty", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlY3RldHVlciI.TzWrjty_1MomQ90WvTAEYz3Ypaemo4ROSK2xWJjBEbc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla."}}, {"model": "assets.systemuser", "pk": 63, "fields": {"name": "Nicole Hamilton", "username": "jean", "_password": "eyJhbGciOiJIUzI1NiJ9.ImltcGVyZGlldCI._XQV1N-Rnln6cTJCYdC29156Dpw77ZWlw3qvZlLQ0zY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Proin at turpis a pede posuere nonummy."}}, {"model": "assets.systemuser", "pk": 64, "fields": {"name": "Emily Knight", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVzdCI.kqn80ndZDQ0Gc7AnT112KsF2joNDpppfPsuPxS6cOwk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Nunc rhoncus dui vel sem."}}, {"model": "assets.systemuser", "pk": 65, "fields": {"name": "Anna Cook", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpYW0i.ptlstDxIX3roDa9-XgVcwFcuugOtvaVsjm7xvHG29s4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Curabitur at ipsum ac tellus semper interdum."}}, {"model": "assets.systemuser", "pk": 66, "fields": {"name": "Carol Murray", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.Imx1Y3R1cyI.HgJMJ_hzKIXE6FmvnIJpfQbY4kKS5qd1c2IJ_GxPdqQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Suspendisse ornare consequat lectus."}}, {"model": "assets.systemuser", "pk": 67, "fields": {"name": "Emily Murphy", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlbyI.qTN86wuszuz1DJYzlN4xnIOKk4BnSDGx-SrJn18aLxE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Praesent id massa id nisl venenatis lacinia."}}, {"model": "assets.systemuser", "pk": 68, "fields": {"name": "Michelle Lane", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante."}}, {"model": "assets.systemuser", "pk": 69, "fields": {"name": "Shirley Jackson", "username": "pamela", "_password": "eyJhbGciOiJIUzI1NiJ9.InR1cnBpcyI.S-5yYJpmB1hT7Tl1JIPCGsXZ1ATf1_uaCJq1VwSGaPg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Morbi non lectus."}}, {"model": "assets.systemuser", "pk": 70, "fields": {"name": "Lori Sims", "username": "wanda", "_password": "eyJhbGciOiJIUzI1NiJ9.InZ1bHB1dGF0ZSI.HAxmcbbI0_SkIFV_ZOG8ZxC0XPSHCWZVLpdWO6lO8oc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Duis at velit eu est congue elementum."}}, {"model": "assets.systemuser", "pk": 71, "fields": {"name": "Maria Howard", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Mauris lacinia sapien quis libero."}}, {"model": "assets.systemuser", "pk": 72, "fields": {"name": "Linda Edwards", "username": "ruth", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbmVuYXRpcyI.MHDovdAZ1Y6dl56pKsuIia06fJzbbnMAg6H7y3IQHcE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante."}}, {"model": "assets.systemuser", "pk": 73, "fields": {"name": "Laura Ellis", "username": "evelyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InByaW1pcyI.OAlhMPsCXTLC41MGIrALVio6iqoIwHbHFj-r4Kg4lso", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh."}}, {"model": "assets.systemuser", "pk": 74, "fields": {"name": "Rose Castillo", "username": "pamela", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Proin risus."}}, {"model": "assets.systemuser", "pk": 75, "fields": {"name": "Jean Diaz", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Z3VlIg.crP2_jl_o91zD62WaHCevBI_9ScRk6cXhXtPdAVGOYQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Integer a nibh."}}, {"model": "assets.systemuser", "pk": 76, "fields": {"name": "Nancy Bailey", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lYyI.LKXtwRVgPGpIFsCWDaqgz1FeQ0uuEIthkh3bbD8r6bI", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 77, "fields": {"name": "Bonnie Hamilton", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Proin eu mi."}}, {"model": "assets.systemuser", "pk": 78, "fields": {"name": "Emily Wells", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpZ25pc3NpbSI.PZwbth19mgCdfgv1LlU424tnbk5CNu52pStG5VcOXBc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla."}}, {"model": "assets.systemuser", "pk": 79, "fields": {"name": "Linda Green", "username": "ruby", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.systemuser", "pk": 80, "fields": {"name": "Debra Green", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdGFlIg.hgeyUub3irVAJMeHmqEr9yZ7bLM1VSZtwTsRMf3sPoI", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Pellentesque eget nunc."}}, {"model": "assets.systemuser", "pk": 81, "fields": {"name": "Susan Kelley", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im11cyI.EMRq4XsUbC_YpCauan3_7VrGk-m6OV8YOqmfntYW-tw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Morbi quis tortor id nulla ultrices aliquet."}}, {"model": "assets.systemuser", "pk": 82, "fields": {"name": "Teresa Wright", "username": "ann", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsbGFtY29ycGVyIg.Ere4LUljW2jSMrLsaH9VvwQB--Prerb_h0knRRiHMI0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Etiam vel augue."}}, {"model": "assets.systemuser", "pk": 83, "fields": {"name": "Kelly Daniels", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.systemuser", "pk": 84, "fields": {"name": "Karen Berry", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZ25hIg.n7_lEZwzxnXBn5B4uo3looqSDDSKNqXXAxpJYKKNn7c", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Curabitur convallis."}}, {"model": "assets.systemuser", "pk": 85, "fields": {"name": "Patricia Williamson", "username": "paula", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Vestibulum ac est lacinia nisi venenatis tristique."}}, {"model": "assets.systemuser", "pk": 86, "fields": {"name": "Tammy Washington", "username": "margaret", "_password": "eyJhbGciOiJIUzI1NiJ9.ImEi.DmKqiccrpBqvmrAyHjGrnQCuTR7H-csji_L5NxeelbM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Vivamus in felis eu sapien cursus vestibulum."}}, {"model": "assets.systemuser", "pk": 87, "fields": {"name": "Anna Ray", "username": "frances", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros."}}, {"model": "assets.systemuser", "pk": 88, "fields": {"name": "Sharon Day", "username": "virginia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.systemuser", "pk": 89, "fields": {"name": "Deborah Oliver", "username": "anna", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9kaW8i.1qhr1N7Gn0TJEa_Q7rIWvOTqqMKwFcHXP7BomzX7J7Q", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Curabitur gravida nisi at nibh."}}, {"model": "assets.systemuser", "pk": 90, "fields": {"name": "Jacqueline Lynch", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "In congue."}}, {"model": "assets.systemuser", "pk": 91, "fields": {"name": "Diana Greene", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImEi.DmKqiccrpBqvmrAyHjGrnQCuTR7H-csji_L5NxeelbM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.systemuser", "pk": 92, "fields": {"name": "Mary Kelly", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlZGUi.VNfxhauAGiZelQ34CO0YMVbRtgnIiH5Z-vY1jjYXhWA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Ut at dolor quis odio consequat varius."}}, {"model": "assets.systemuser", "pk": 93, "fields": {"name": "Laura Brooks", "username": "marilyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhcGllbiI.FV7Fd4y2296g887c98VrXRInZMVQulodf4KOSrBCWog", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Duis mattis egestas metus."}}, {"model": "assets.systemuser", "pk": 94, "fields": {"name": "Jennifer Stone", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.InJob25jdXMi.zc47wfesB5fcJ-oBaHagDTV8j2ml3oDL---yZnXFmX4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Fusce consequat."}}, {"model": "assets.systemuser", "pk": 95, "fields": {"name": "Martha Snyder", "username": "stephanie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1ZXQi.0TraHx47KvE6bkOa9qhhUnZ_6VnAq1s7EF2I_pIMdYk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Phasellus sit amet erat."}}, {"model": "assets.systemuser", "pk": 96, "fields": {"name": "Sharon Williams", "username": "barbara", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Morbi ut odio."}}, {"model": "assets.systemuser", "pk": 97, "fields": {"name": "Angela Roberts", "username": "judith", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdGFlIg.hgeyUub3irVAJMeHmqEr9yZ7bLM1VSZtwTsRMf3sPoI", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.systemuser", "pk": 98, "fields": {"name": "Doris George", "username": "gloria", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpZ3VsYSI.aZGEVUuvvGP8M_brQEnU40wGGh4xDoW5jzwki7DPGg0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Sed sagittis."}}, {"model": "assets.systemuser", "pk": 99, "fields": {"name": "Sharon Banks", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bmMi.QZCxEf3ITmu1xFtZxZL7B-kLe61BCyaRJg_ryZUsHdw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Donec semper sapien a libero."}}, {"model": "assets.systemuser", "pk": 100, "fields": {"name": "Frances Foster", "username": "wanda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZhY2lsaXNpIg.o3pTjv_wwFWMMy8KPKR81l1v77sTGOldqpIEcDvq--Y", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-25T15:09:51Z", "created_by": "Fake", "comment": "Praesent blandit."}}, {"model": "assets.assetgroup", "pk": 1, "fields": {"name": "Default", "created_by": "", "date_created": "2016-11-25T06:50:28Z", "comment": "Default asset group", "system_users": []}}, {"model": "assets.assetgroup", "pk": 2, "fields": {"name": "Phyllis Knight", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Donec vitae nisi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 3, "fields": {"name": "Helen Ward", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Mauris ullamcorper purus sit amet nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 4, "fields": {"name": "Alice Greene", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 5, "fields": {"name": "Judy Murray", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 6, "fields": {"name": "Julia Mendoza", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Phasellus sit amet erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 7, "fields": {"name": "Rebecca Bishop", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Cras pellentesque volutpat dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 8, "fields": {"name": "Pamela Thomas", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Curabitur at ipsum ac tellus semper interdum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 9, "fields": {"name": "Karen Rice", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Aliquam sit amet diam in magna bibendum imperdiet.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 10, "fields": {"name": "Patricia Bowman", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 11, "fields": {"name": "Amanda Johnston", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nulla tellus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 12, "fields": {"name": "Amy Kennedy", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 13, "fields": {"name": "Lisa Fernandez", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nam dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 14, "fields": {"name": "Mildred Harris", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi non quam nec dui luctus rutrum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 15, "fields": {"name": "Sandra Harris", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi non lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 16, "fields": {"name": "Diana Cooper", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 17, "fields": {"name": "Annie Richardson", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Vivamus vestibulum sagittis sapien.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 18, "fields": {"name": "Betty Bishop", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Sed accumsan felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 19, "fields": {"name": "Jane Cunningham", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 20, "fields": {"name": "Karen Moreno", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 21, "fields": {"name": "Mildred Rice", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Curabitur gravida nisi at nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 22, "fields": {"name": "Cheryl Chapman", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi a ipsum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 23, "fields": {"name": "Emily Lynch", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 24, "fields": {"name": "Janice Bowman", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Pellentesque ultrices mattis odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 25, "fields": {"name": "Linda Carter", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 26, "fields": {"name": "Elizabeth West", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Phasellus sit amet erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 27, "fields": {"name": "Evelyn Duncan", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Suspendisse accumsan tortor quis turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 28, "fields": {"name": "Rebecca Moore", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Etiam vel augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 29, "fields": {"name": "Beverly Morales", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 30, "fields": {"name": "Janet Parker", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Etiam vel augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 31, "fields": {"name": "Kathy Powell", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Ut at dolor quis odio consequat varius.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 32, "fields": {"name": "Annie King", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Fusce posuere felis sed lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 33, "fields": {"name": "Diana Oliver", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nam nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 34, "fields": {"name": "Katherine Nichols", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 35, "fields": {"name": "Marie Reyes", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 36, "fields": {"name": "Judy King", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 37, "fields": {"name": "Laura Mills", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 38, "fields": {"name": "Denise Stewart", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Integer non velit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 39, "fields": {"name": "Diane Long", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In quis justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 40, "fields": {"name": "Diana Simpson", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 41, "fields": {"name": "Deborah Sims", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Maecenas tincidunt lacus at velit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 42, "fields": {"name": "Helen Willis", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Fusce consequat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 43, "fields": {"name": "Shirley Murphy", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Aenean lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 44, "fields": {"name": "Kimberly Rose", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nullam varius.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 45, "fields": {"name": "Julia Cunningham", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 46, "fields": {"name": "Emily Barnes", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nulla tempus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 47, "fields": {"name": "Jacqueline Moreno", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Integer ac neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 48, "fields": {"name": "Gloria Nelson", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi non lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 49, "fields": {"name": "Jean Porter", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Sed ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 50, "fields": {"name": "Rebecca Rivera", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 51, "fields": {"name": "Judith Hunt", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Vivamus in felis eu sapien cursus vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 52, "fields": {"name": "Paula Jones", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 53, "fields": {"name": "Ruth Larson", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 54, "fields": {"name": "Nancy Williamson", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 55, "fields": {"name": "Norma Rose", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 56, "fields": {"name": "Theresa Watkins", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Integer ac neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 57, "fields": {"name": "Margaret Lewis", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 58, "fields": {"name": "Tammy Flores", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 59, "fields": {"name": "Nicole Wheeler", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 60, "fields": {"name": "Sandra Meyer", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Fusce posuere felis sed lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 61, "fields": {"name": "Julie Gilbert", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 62, "fields": {"name": "Anna Fowler", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 63, "fields": {"name": "Ruth Rivera", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 64, "fields": {"name": "Janet Myers", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Etiam faucibus cursus urna.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 65, "fields": {"name": "Lisa Day", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 66, "fields": {"name": "Virginia Mills", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Maecenas tincidunt lacus at velit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 67, "fields": {"name": "Debra Russell", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 68, "fields": {"name": "Pamela Mcdonald", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Donec quis orci eget orci vehicula condimentum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 69, "fields": {"name": "Nancy Gilbert", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 70, "fields": {"name": "Robin Lawrence", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi a ipsum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 71, "fields": {"name": "Sandra Holmes", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Integer tincidunt ante vel ipsum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 72, "fields": {"name": "Sandra Taylor", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nulla suscipit ligula in lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 73, "fields": {"name": "Nancy Fox", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Vivamus vestibulum sagittis sapien.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 74, "fields": {"name": "Karen Nguyen", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 75, "fields": {"name": "Debra Parker", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Vestibulum sed magna at nunc commodo placerat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 76, "fields": {"name": "Norma Gray", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Quisque ut erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 77, "fields": {"name": "Tammy Chavez", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Proin risus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 78, "fields": {"name": "Tina Snyder", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 79, "fields": {"name": "Louise Kelly", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Aenean auctor gravida sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 80, "fields": {"name": "Margaret Jacobs", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 81, "fields": {"name": "Debra Johnson", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 82, "fields": {"name": "Wanda Hawkins", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 83, "fields": {"name": "Andrea Cunningham", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi non quam nec dui luctus rutrum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 84, "fields": {"name": "Karen Hanson", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Donec posuere metus vitae ipsum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 85, "fields": {"name": "Jacqueline Diaz", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 86, "fields": {"name": "Lois Franklin", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 87, "fields": {"name": "Rebecca Howard", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Curabitur convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 88, "fields": {"name": "Amanda Ellis", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Proin at turpis a pede posuere nonummy.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 89, "fields": {"name": "Marilyn Collins", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 90, "fields": {"name": "Barbara Martinez", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Integer tincidunt ante vel ipsum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 91, "fields": {"name": "Ruby Gordon", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nam dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 92, "fields": {"name": "Paula Wallace", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 93, "fields": {"name": "Brenda Murray", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Cras pellentesque volutpat dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 94, "fields": {"name": "Elizabeth Warren", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nullam molestie nibh in lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 95, "fields": {"name": "Heather Rogers", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Maecenas tincidunt lacus at velit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 96, "fields": {"name": "Amanda Moreno", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Curabitur at ipsum ac tellus semper interdum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 97, "fields": {"name": "Phyllis Wood", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In eleifend quam a odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 98, "fields": {"name": "Catherine Mcdonald", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 99, "fields": {"name": "Donna Griffin", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Aliquam sit amet diam in magna bibendum imperdiet.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 100, "fields": {"name": "Emily Ramos", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "Nunc purus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 101, "fields": {"name": "Lois Bennett", "created_by": "Fake", "date_created": "2016-11-25T15:09:51Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.asset", "pk": 1, "fields": {"ip": "0.0.0.0", "other_ip": null, "remote_card_ip": null, "hostname": "marilyn72", "port": 22, "admin_user": 90, "idc": 76, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:51Z", "comment": "", "groups": [4, 46, 68], "system_users": [18, 31, 64], "tags": []}}, {"model": "assets.asset", "pk": 2, "fields": {"ip": "1.1.1.1", "other_ip": null, "remote_card_ip": null, "hostname": "karen64", "port": 22, "admin_user": 62, "idc": 3, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:51Z", "comment": "", "groups": [18, 67, 74], "system_users": [8, 39, 40], "tags": []}}, {"model": "assets.asset", "pk": 3, "fields": {"ip": "2.2.2.2", "other_ip": null, "remote_card_ip": null, "hostname": "beverly72", "port": 22, "admin_user": 27, "idc": 98, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:51Z", "comment": "", "groups": [1, 27, 71], "system_users": [60, 79, 90], "tags": []}}, {"model": "assets.asset", "pk": 4, "fields": {"ip": "3.3.3.3", "other_ip": null, "remote_card_ip": null, "hostname": "lori91", "port": 22, "admin_user": 34, "idc": 39, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [22, 79, 94], "system_users": [32, 53], "tags": []}}, {"model": "assets.asset", "pk": 5, "fields": {"ip": "4.4.4.4", "other_ip": null, "remote_card_ip": null, "hostname": "jennifer69", "port": 22, "admin_user": 75, "idc": 96, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [8, 38, 51], "system_users": [35, 87, 96], "tags": []}}, {"model": "assets.asset", "pk": 6, "fields": {"ip": "5.5.5.5", "other_ip": null, "remote_card_ip": null, "hostname": "jessica92", "port": 22, "admin_user": 81, "idc": 87, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [21, 51, 70], "system_users": [9, 14, 64], "tags": []}}, {"model": "assets.asset", "pk": 7, "fields": {"ip": "6.6.6.6", "other_ip": null, "remote_card_ip": null, "hostname": "carol67", "port": 22, "admin_user": 16, "idc": 46, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [42, 57, 76], "system_users": [19, 42, 67], "tags": []}}, {"model": "assets.asset", "pk": 8, "fields": {"ip": "7.7.7.7", "other_ip": null, "remote_card_ip": null, "hostname": "melissa83", "port": 22, "admin_user": 79, "idc": 68, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [16, 44, 72], "system_users": [25, 49, 68], "tags": []}}, {"model": "assets.asset", "pk": 9, "fields": {"ip": "8.8.8.8", "other_ip": null, "remote_card_ip": null, "hostname": "sarah69", "port": 22, "admin_user": 32, "idc": 36, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [70, 71, 88], "system_users": [1, 13, 100], "tags": []}}, {"model": "assets.asset", "pk": 10, "fields": {"ip": "9.9.9.9", "other_ip": null, "remote_card_ip": null, "hostname": "sara84", "port": 22, "admin_user": 88, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [78, 81, 96], "system_users": [3, 48, 57], "tags": []}}, {"model": "assets.asset", "pk": 11, "fields": {"ip": "10.10.10.10", "other_ip": null, "remote_card_ip": null, "hostname": "sara83", "port": 22, "admin_user": 81, "idc": 14, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [10, 33, 66], "system_users": [17, 56, 95], "tags": []}}, {"model": "assets.asset", "pk": 12, "fields": {"ip": "11.11.11.11", "other_ip": null, "remote_card_ip": null, "hostname": "julia67", "port": 22, "admin_user": 35, "idc": 2, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [6, 71, 77], "system_users": [13, 54, 85], "tags": []}}, {"model": "assets.asset", "pk": 13, "fields": {"ip": "12.12.12.12", "other_ip": null, "remote_card_ip": null, "hostname": "stephanie92", "port": 22, "admin_user": 96, "idc": 22, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [23, 68, 88], "system_users": [9, 28, 31], "tags": []}}, {"model": "assets.asset", "pk": 14, "fields": {"ip": "13.13.13.13", "other_ip": null, "remote_card_ip": null, "hostname": "jessica70", "port": 22, "admin_user": 74, "idc": 45, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [24, 27, 84], "system_users": [48, 78, 99], "tags": []}}, {"model": "assets.asset", "pk": 15, "fields": {"ip": "14.14.14.14", "other_ip": null, "remote_card_ip": null, "hostname": "annie90", "port": 22, "admin_user": 68, "idc": 27, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [36, 51, 78], "system_users": [14, 26, 78], "tags": []}}, {"model": "assets.asset", "pk": 16, "fields": {"ip": "15.15.15.15", "other_ip": null, "remote_card_ip": null, "hostname": "christine74", "port": 22, "admin_user": 44, "idc": 32, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [57, 73, 86], "system_users": [7, 58, 95], "tags": []}}, {"model": "assets.asset", "pk": 17, "fields": {"ip": "16.16.16.16", "other_ip": null, "remote_card_ip": null, "hostname": "lori80", "port": 22, "admin_user": 67, "idc": 57, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [35, 86, 95], "system_users": [9, 18, 46], "tags": []}}, {"model": "assets.asset", "pk": 18, "fields": {"ip": "17.17.17.17", "other_ip": null, "remote_card_ip": null, "hostname": "deborah70", "port": 22, "admin_user": 52, "idc": 31, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [5, 11, 12], "system_users": [43, 77, 100], "tags": []}}, {"model": "assets.asset", "pk": 19, "fields": {"ip": "18.18.18.18", "other_ip": null, "remote_card_ip": null, "hostname": "christina84", "port": 22, "admin_user": 66, "idc": 63, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:52Z", "comment": "", "groups": [2, 84, 92], "system_users": [16, 51, 52], "tags": []}}, {"model": "assets.asset", "pk": 20, "fields": {"ip": "19.19.19.19", "other_ip": null, "remote_card_ip": null, "hostname": "martha88", "port": 22, "admin_user": 24, "idc": 90, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [37, 39, 67], "system_users": [9, 24, 36], "tags": []}}, {"model": "assets.asset", "pk": 21, "fields": {"ip": "20.20.20.20", "other_ip": null, "remote_card_ip": null, "hostname": "kimberly87", "port": 22, "admin_user": 12, "idc": 64, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [40, 47, 82], "system_users": [3, 21, 28], "tags": []}}, {"model": "assets.asset", "pk": 22, "fields": {"ip": "21.21.21.21", "other_ip": null, "remote_card_ip": null, "hostname": "marie72", "port": 22, "admin_user": 57, "idc": 94, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [39, 92, 99], "system_users": [8, 25, 26], "tags": []}}, {"model": "assets.asset", "pk": 23, "fields": {"ip": "22.22.22.22", "other_ip": null, "remote_card_ip": null, "hostname": "janice71", "port": 22, "admin_user": 19, "idc": 92, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [18, 35, 57], "system_users": [33, 53, 77], "tags": []}}, {"model": "assets.asset", "pk": 24, "fields": {"ip": "23.23.23.23", "other_ip": null, "remote_card_ip": null, "hostname": "nancy79", "port": 22, "admin_user": 75, "idc": 57, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [26, 51, 91], "system_users": [1, 60, 72], "tags": []}}, {"model": "assets.asset", "pk": 25, "fields": {"ip": "24.24.24.24", "other_ip": null, "remote_card_ip": null, "hostname": "pamela80", "port": 22, "admin_user": 20, "idc": 28, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [3, 38, 77], "system_users": [1, 26, 32], "tags": []}}, {"model": "assets.asset", "pk": 26, "fields": {"ip": "25.25.25.25", "other_ip": null, "remote_card_ip": null, "hostname": "theresa63", "port": 22, "admin_user": 12, "idc": 41, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [33, 56, 87], "system_users": [54, 96, 97], "tags": []}}, {"model": "assets.asset", "pk": 27, "fields": {"ip": "26.26.26.26", "other_ip": null, "remote_card_ip": null, "hostname": "margaret77", "port": 22, "admin_user": 63, "idc": 93, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [18, 29, 78], "system_users": [71, 85, 87], "tags": []}}, {"model": "assets.asset", "pk": 28, "fields": {"ip": "27.27.27.27", "other_ip": null, "remote_card_ip": null, "hostname": "janet85", "port": 22, "admin_user": 68, "idc": 85, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [78, 87, 101], "system_users": [9, 34, 41], "tags": []}}, {"model": "assets.asset", "pk": 29, "fields": {"ip": "28.28.28.28", "other_ip": null, "remote_card_ip": null, "hostname": "karen80", "port": 22, "admin_user": 41, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [17, 64, 91], "system_users": [24, 72, 80], "tags": []}}, {"model": "assets.asset", "pk": 30, "fields": {"ip": "29.29.29.29", "other_ip": null, "remote_card_ip": null, "hostname": "christine80", "port": 22, "admin_user": 99, "idc": 25, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [10, 41, 94], "system_users": [10, 38], "tags": []}}, {"model": "assets.asset", "pk": 31, "fields": {"ip": "30.30.30.30", "other_ip": null, "remote_card_ip": null, "hostname": "annie87", "port": 22, "admin_user": 50, "idc": 81, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [13, 73], "system_users": [26, 69, 86], "tags": []}}, {"model": "assets.asset", "pk": 32, "fields": {"ip": "31.31.31.31", "other_ip": null, "remote_card_ip": null, "hostname": "heather78", "port": 22, "admin_user": 61, "idc": 46, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [15, 27, 42], "system_users": [36, 66, 95], "tags": []}}, {"model": "assets.asset", "pk": 33, "fields": {"ip": "32.32.32.32", "other_ip": null, "remote_card_ip": null, "hostname": "laura93", "port": 22, "admin_user": 48, "idc": 90, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [30, 41, 51], "system_users": [45, 55, 75], "tags": []}}, {"model": "assets.asset", "pk": 34, "fields": {"ip": "33.33.33.33", "other_ip": null, "remote_card_ip": null, "hostname": "martha63", "port": 22, "admin_user": 76, "idc": 57, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [17, 43, 88], "system_users": [8, 52, 73], "tags": []}}, {"model": "assets.asset", "pk": 35, "fields": {"ip": "34.34.34.34", "other_ip": null, "remote_card_ip": null, "hostname": "janice85", "port": 22, "admin_user": 71, "idc": 28, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:53Z", "comment": "", "groups": [89, 100], "system_users": [7, 40, 85], "tags": []}}, {"model": "assets.asset", "pk": 36, "fields": {"ip": "35.35.35.35", "other_ip": null, "remote_card_ip": null, "hostname": "anna71", "port": 22, "admin_user": 6, "idc": 34, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [72, 81, 94], "system_users": [3, 50, 62], "tags": []}}, {"model": "assets.asset", "pk": 37, "fields": {"ip": "36.36.36.36", "other_ip": null, "remote_card_ip": null, "hostname": "norma90", "port": 22, "admin_user": 86, "idc": 35, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [9, 19, 26], "system_users": [10, 13, 76], "tags": []}}, {"model": "assets.asset", "pk": 38, "fields": {"ip": "37.37.37.37", "other_ip": null, "remote_card_ip": null, "hostname": "jennifer77", "port": 22, "admin_user": 48, "idc": 18, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [61, 62, 69], "system_users": [26, 93, 98], "tags": []}}, {"model": "assets.asset", "pk": 39, "fields": {"ip": "38.38.38.38", "other_ip": null, "remote_card_ip": null, "hostname": "amy85", "port": 22, "admin_user": 6, "idc": 94, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [23, 64, 90], "system_users": [65, 72, 87], "tags": []}}, {"model": "assets.asset", "pk": 40, "fields": {"ip": "39.39.39.39", "other_ip": null, "remote_card_ip": null, "hostname": "cynthia89", "port": 22, "admin_user": 79, "idc": 96, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [45, 100, 101], "system_users": [36, 38, 51], "tags": []}}, {"model": "assets.asset", "pk": 41, "fields": {"ip": "40.40.40.40", "other_ip": null, "remote_card_ip": null, "hostname": "bonnie94", "port": 22, "admin_user": 73, "idc": 81, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [34, 68, 70], "system_users": [39, 60, 79], "tags": []}}, {"model": "assets.asset", "pk": 42, "fields": {"ip": "41.41.41.41", "other_ip": null, "remote_card_ip": null, "hostname": "jacqueline70", "port": 22, "admin_user": 71, "idc": 50, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [6, 42, 52], "system_users": [42, 57, 91], "tags": []}}, {"model": "assets.asset", "pk": 43, "fields": {"ip": "42.42.42.42", "other_ip": null, "remote_card_ip": null, "hostname": "diana73", "port": 22, "admin_user": 38, "idc": 55, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [52, 60, 91], "system_users": [11, 64, 80], "tags": []}}, {"model": "assets.asset", "pk": 44, "fields": {"ip": "43.43.43.43", "other_ip": null, "remote_card_ip": null, "hostname": "catherine91", "port": 22, "admin_user": 9, "idc": 23, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [63, 79, 92], "system_users": [44, 61], "tags": []}}, {"model": "assets.asset", "pk": 45, "fields": {"ip": "44.44.44.44", "other_ip": null, "remote_card_ip": null, "hostname": "carol79", "port": 22, "admin_user": 61, "idc": 63, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [45, 75, 97], "system_users": [8, 43, 54], "tags": []}}, {"model": "assets.asset", "pk": 46, "fields": {"ip": "45.45.45.45", "other_ip": null, "remote_card_ip": null, "hostname": "theresa81", "port": 22, "admin_user": 32, "idc": 40, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [23, 81, 88], "system_users": [7, 24, 46], "tags": []}}, {"model": "assets.asset", "pk": 47, "fields": {"ip": "46.46.46.46", "other_ip": null, "remote_card_ip": null, "hostname": "jane63", "port": 22, "admin_user": 96, "idc": 96, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [21, 64, 74], "system_users": [59, 93, 97], "tags": []}}, {"model": "assets.asset", "pk": 48, "fields": {"ip": "47.47.47.47", "other_ip": null, "remote_card_ip": null, "hostname": "betty84", "port": 22, "admin_user": 12, "idc": 44, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [3, 29, 67], "system_users": [7, 56, 91], "tags": []}}, {"model": "assets.asset", "pk": 49, "fields": {"ip": "48.48.48.48", "other_ip": null, "remote_card_ip": null, "hostname": "virginia88", "port": 22, "admin_user": 68, "idc": 8, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [55, 86, 87], "system_users": [47, 62, 98], "tags": []}}, {"model": "assets.asset", "pk": 50, "fields": {"ip": "49.49.49.49", "other_ip": null, "remote_card_ip": null, "hostname": "amy91", "port": 22, "admin_user": 2, "idc": 95, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [12, 63, 69], "system_users": [29, 41, 60], "tags": []}}, {"model": "assets.asset", "pk": 51, "fields": {"ip": "50.50.50.50", "other_ip": null, "remote_card_ip": null, "hostname": "jean75", "port": 22, "admin_user": 15, "idc": 68, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:54Z", "comment": "", "groups": [38, 40, 47], "system_users": [5, 69, 100], "tags": []}}, {"model": "assets.asset", "pk": 52, "fields": {"ip": "51.51.51.51", "other_ip": null, "remote_card_ip": null, "hostname": "diana66", "port": 22, "admin_user": 97, "idc": 50, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [17, 19, 47], "system_users": [17, 80, 99], "tags": []}}, {"model": "assets.asset", "pk": 53, "fields": {"ip": "52.52.52.52", "other_ip": null, "remote_card_ip": null, "hostname": "tammy71", "port": 22, "admin_user": 53, "idc": 14, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [24, 49, 82], "system_users": [4, 37, 96], "tags": []}}, {"model": "assets.asset", "pk": 54, "fields": {"ip": "53.53.53.53", "other_ip": null, "remote_card_ip": null, "hostname": "deborah69", "port": 22, "admin_user": 46, "idc": 74, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [83, 92], "system_users": [14, 57, 85], "tags": []}}, {"model": "assets.asset", "pk": 55, "fields": {"ip": "54.54.54.54", "other_ip": null, "remote_card_ip": null, "hostname": "maria73", "port": 22, "admin_user": 76, "idc": 24, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [70, 71], "system_users": [15, 51, 73], "tags": []}}, {"model": "assets.asset", "pk": 56, "fields": {"ip": "55.55.55.55", "other_ip": null, "remote_card_ip": null, "hostname": "pamela76", "port": 22, "admin_user": 69, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [16, 41, 92], "system_users": [28, 50, 63], "tags": []}}, {"model": "assets.asset", "pk": 57, "fields": {"ip": "56.56.56.56", "other_ip": null, "remote_card_ip": null, "hostname": "cheryl69", "port": 22, "admin_user": 43, "idc": 36, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [35, 83, 98], "system_users": [18, 52, 79], "tags": []}}, {"model": "assets.asset", "pk": 58, "fields": {"ip": "57.57.57.57", "other_ip": null, "remote_card_ip": null, "hostname": "cynthia68", "port": 22, "admin_user": 50, "idc": 73, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [25, 61, 64], "system_users": [33, 46, 87], "tags": []}}, {"model": "assets.asset", "pk": 59, "fields": {"ip": "58.58.58.58", "other_ip": null, "remote_card_ip": null, "hostname": "pamela77", "port": 22, "admin_user": 58, "idc": 44, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [1, 4, 92], "system_users": [31, 81, 98], "tags": []}}, {"model": "assets.asset", "pk": 60, "fields": {"ip": "59.59.59.59", "other_ip": null, "remote_card_ip": null, "hostname": "sandra88", "port": 22, "admin_user": 20, "idc": 65, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [14, 29, 99], "system_users": [6, 32, 65], "tags": []}}, {"model": "assets.asset", "pk": 61, "fields": {"ip": "60.60.60.60", "other_ip": null, "remote_card_ip": null, "hostname": "jessica72", "port": 22, "admin_user": 49, "idc": 32, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [32, 35, 74], "system_users": [41, 51, 64], "tags": []}}, {"model": "assets.asset", "pk": 62, "fields": {"ip": "61.61.61.61", "other_ip": null, "remote_card_ip": null, "hostname": "angela70", "port": 22, "admin_user": 79, "idc": 100, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [15, 34, 41], "system_users": [17, 23, 53], "tags": []}}, {"model": "assets.asset", "pk": 63, "fields": {"ip": "62.62.62.62", "other_ip": null, "remote_card_ip": null, "hostname": "joan91", "port": 22, "admin_user": 5, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [19, 39, 44], "system_users": [43, 64, 76], "tags": []}}, {"model": "assets.asset", "pk": 64, "fields": {"ip": "63.63.63.63", "other_ip": null, "remote_card_ip": null, "hostname": "andrea71", "port": 22, "admin_user": 81, "idc": 52, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [62, 64, 72], "system_users": [15, 56, 68], "tags": []}}, {"model": "assets.asset", "pk": 65, "fields": {"ip": "64.64.64.64", "other_ip": null, "remote_card_ip": null, "hostname": "susan77", "port": 22, "admin_user": 51, "idc": 25, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:55Z", "comment": "", "groups": [89, 94, 96], "system_users": [54, 68, 91], "tags": []}}, {"model": "assets.asset", "pk": 66, "fields": {"ip": "65.65.65.65", "other_ip": null, "remote_card_ip": null, "hostname": "rachel67", "port": 22, "admin_user": 36, "idc": 75, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [26, 32, 48], "system_users": [17, 29, 55], "tags": []}}, {"model": "assets.asset", "pk": 67, "fields": {"ip": "66.66.66.66", "other_ip": null, "remote_card_ip": null, "hostname": "karen89", "port": 22, "admin_user": 62, "idc": 74, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [18, 40, 66], "system_users": [8, 52, 72], "tags": []}}, {"model": "assets.asset", "pk": 68, "fields": {"ip": "67.67.67.67", "other_ip": null, "remote_card_ip": null, "hostname": "katherine79", "port": 22, "admin_user": 63, "idc": 23, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [19, 61, 73], "system_users": [45, 49, 92], "tags": []}}, {"model": "assets.asset", "pk": 69, "fields": {"ip": "68.68.68.68", "other_ip": null, "remote_card_ip": null, "hostname": "jean80", "port": 22, "admin_user": 11, "idc": 13, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [39, 40, 93], "system_users": [11, 21, 45], "tags": []}}, {"model": "assets.asset", "pk": 70, "fields": {"ip": "69.69.69.69", "other_ip": null, "remote_card_ip": null, "hostname": "louise92", "port": 22, "admin_user": 14, "idc": 69, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [25, 33, 72], "system_users": [6, 51, 79], "tags": []}}, {"model": "assets.asset", "pk": 71, "fields": {"ip": "70.70.70.70", "other_ip": null, "remote_card_ip": null, "hostname": "lisa86", "port": 22, "admin_user": 48, "idc": 30, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [39, 72, 80], "system_users": [31, 40, 80], "tags": []}}, {"model": "assets.asset", "pk": 72, "fields": {"ip": "71.71.71.71", "other_ip": null, "remote_card_ip": null, "hostname": "mary94", "port": 22, "admin_user": 29, "idc": 87, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [19, 83, 91], "system_users": [7, 26, 88], "tags": []}}, {"model": "assets.asset", "pk": 73, "fields": {"ip": "72.72.72.72", "other_ip": null, "remote_card_ip": null, "hostname": "deborah65", "port": 22, "admin_user": 31, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [28, 35, 54], "system_users": [39, 50, 81], "tags": []}}, {"model": "assets.asset", "pk": 74, "fields": {"ip": "73.73.73.73", "other_ip": null, "remote_card_ip": null, "hostname": "barbara89", "port": 22, "admin_user": 45, "idc": 63, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [6, 9, 63], "system_users": [83, 90, 98], "tags": []}}, {"model": "assets.asset", "pk": 75, "fields": {"ip": "74.74.74.74", "other_ip": null, "remote_card_ip": null, "hostname": "janice93", "port": 22, "admin_user": 85, "idc": 25, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [34, 70, 82], "system_users": [1, 34, 51], "tags": []}}, {"model": "assets.asset", "pk": 76, "fields": {"ip": "75.75.75.75", "other_ip": null, "remote_card_ip": null, "hostname": "melissa94", "port": 22, "admin_user": 5, "idc": 85, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [46, 49, 58], "system_users": [50, 53, 81], "tags": []}}, {"model": "assets.asset", "pk": 77, "fields": {"ip": "76.76.76.76", "other_ip": null, "remote_card_ip": null, "hostname": "louise66", "port": 22, "admin_user": 62, "idc": 21, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:56Z", "comment": "", "groups": [4, 7, 10], "system_users": [5, 38, 79], "tags": []}}, {"model": "assets.asset", "pk": 78, "fields": {"ip": "77.77.77.77", "other_ip": null, "remote_card_ip": null, "hostname": "paula91", "port": 22, "admin_user": 4, "idc": 37, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [64, 99], "system_users": [31, 63, 70], "tags": []}}, {"model": "assets.asset", "pk": 79, "fields": {"ip": "78.78.78.78", "other_ip": null, "remote_card_ip": null, "hostname": "rose92", "port": 22, "admin_user": 95, "idc": 19, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [21, 67, 94], "system_users": [69, 78, 82], "tags": []}}, {"model": "assets.asset", "pk": 80, "fields": {"ip": "79.79.79.79", "other_ip": null, "remote_card_ip": null, "hostname": "rebecca69", "port": 22, "admin_user": 19, "idc": 91, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [20, 90, 99], "system_users": [33, 39, 56], "tags": []}}, {"model": "assets.asset", "pk": 81, "fields": {"ip": "80.80.80.80", "other_ip": null, "remote_card_ip": null, "hostname": "melissa78", "port": 22, "admin_user": 5, "idc": 30, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [6, 43, 63], "system_users": [7, 51, 99], "tags": []}}, {"model": "assets.asset", "pk": 82, "fields": {"ip": "81.81.81.81", "other_ip": null, "remote_card_ip": null, "hostname": "ruby66", "port": 22, "admin_user": 11, "idc": 85, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [8, 39, 45], "system_users": [22, 76, 87], "tags": []}}, {"model": "assets.asset", "pk": 83, "fields": {"ip": "82.82.82.82", "other_ip": null, "remote_card_ip": null, "hostname": "julie68", "port": 22, "admin_user": 15, "idc": 84, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [19, 20, 96], "system_users": [6, 91, 93], "tags": []}}, {"model": "assets.asset", "pk": 84, "fields": {"ip": "83.83.83.83", "other_ip": null, "remote_card_ip": null, "hostname": "anne81", "port": 22, "admin_user": 9, "idc": 40, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [9, 32, 82], "system_users": [34, 58, 68], "tags": []}}, {"model": "assets.asset", "pk": 85, "fields": {"ip": "84.84.84.84", "other_ip": null, "remote_card_ip": null, "hostname": "janet78", "port": 22, "admin_user": 16, "idc": 7, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [80, 95], "system_users": [6, 61, 95], "tags": []}}, {"model": "assets.asset", "pk": 86, "fields": {"ip": "85.85.85.85", "other_ip": null, "remote_card_ip": null, "hostname": "diana84", "port": 22, "admin_user": 24, "idc": 47, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [31, 33, 89], "system_users": [31, 82, 97], "tags": []}}, {"model": "assets.asset", "pk": 87, "fields": {"ip": "86.86.86.86", "other_ip": null, "remote_card_ip": null, "hostname": "christine84", "port": 22, "admin_user": 88, "idc": 28, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [40, 54, 87], "system_users": [28, 84, 95], "tags": []}}, {"model": "assets.asset", "pk": 88, "fields": {"ip": "87.87.87.87", "other_ip": null, "remote_card_ip": null, "hostname": "lois82", "port": 22, "admin_user": 34, "idc": 51, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:57Z", "comment": "", "groups": [27, 34, 55], "system_users": [70, 73, 76], "tags": []}}, {"model": "assets.asset", "pk": 89, "fields": {"ip": "88.88.88.88", "other_ip": null, "remote_card_ip": null, "hostname": "paula72", "port": 22, "admin_user": 55, "idc": 42, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:58Z", "comment": "", "groups": [36, 71, 89], "system_users": [26, 35, 73], "tags": []}}, {"model": "assets.asset", "pk": 90, "fields": {"ip": "89.89.89.89", "other_ip": null, "remote_card_ip": null, "hostname": "janet79", "port": 22, "admin_user": 91, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:58Z", "comment": "", "groups": [4, 15, 17], "system_users": [8, 39, 56], "tags": []}}, {"model": "assets.asset", "pk": 91, "fields": {"ip": "90.90.90.90", "other_ip": null, "remote_card_ip": null, "hostname": "ruby93", "port": 22, "admin_user": 11, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:58Z", "comment": "", "groups": [46, 51, 94], "system_users": [75, 78, 91], "tags": []}}, {"model": "assets.asset", "pk": 92, "fields": {"ip": "91.91.91.91", "other_ip": null, "remote_card_ip": null, "hostname": "tina89", "port": 22, "admin_user": 77, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:58Z", "comment": "", "groups": [37, 87], "system_users": [8, 76, 85], "tags": []}}, {"model": "assets.asset", "pk": 93, "fields": {"ip": "92.92.92.92", "other_ip": null, "remote_card_ip": null, "hostname": "louise80", "port": 22, "admin_user": 75, "idc": 53, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:58Z", "comment": "", "groups": [34, 60, 71], "system_users": [38, 43, 83], "tags": []}}, {"model": "assets.asset", "pk": 94, "fields": {"ip": "93.93.93.93", "other_ip": null, "remote_card_ip": null, "hostname": "stephanie79", "port": 22, "admin_user": 2, "idc": 95, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:58Z", "comment": "", "groups": [66, 78, 95], "system_users": [53, 72, 98], "tags": []}}, {"model": "assets.asset", "pk": 95, "fields": {"ip": "94.94.94.94", "other_ip": null, "remote_card_ip": null, "hostname": "sharon65", "port": 22, "admin_user": 22, "idc": 100, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:58Z", "comment": "", "groups": [5, 37, 67], "system_users": [37, 61, 80], "tags": []}}, {"model": "assets.asset", "pk": 96, "fields": {"ip": "95.95.95.95", "other_ip": null, "remote_card_ip": null, "hostname": "anne89", "port": 22, "admin_user": 58, "idc": 22, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:59Z", "comment": "", "groups": [27, 37, 84], "system_users": [16, 55, 80], "tags": []}}, {"model": "assets.asset", "pk": 97, "fields": {"ip": "96.96.96.96", "other_ip": null, "remote_card_ip": null, "hostname": "patricia94", "port": 22, "admin_user": 68, "idc": 77, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:59Z", "comment": "", "groups": [13, 41, 92], "system_users": [51, 83, 88], "tags": []}}, {"model": "assets.asset", "pk": 98, "fields": {"ip": "97.97.97.97", "other_ip": null, "remote_card_ip": null, "hostname": "shirley75", "port": 22, "admin_user": 80, "idc": 22, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:59Z", "comment": "", "groups": [9, 30, 50], "system_users": [34, 60, 81], "tags": []}}, {"model": "assets.asset", "pk": 99, "fields": {"ip": "98.98.98.98", "other_ip": null, "remote_card_ip": null, "hostname": "wanda66", "port": 22, "admin_user": 82, "idc": 21, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:59Z", "comment": "", "groups": [5, 16, 17], "system_users": [76, 29, 30], "tags": []}}, {"model": "assets.asset", "pk": 100, "fields": {"ip": "99.99.99.99", "other_ip": null, "remote_card_ip": null, "hostname": "frances87", "port": 22, "admin_user": 69, "idc": 18, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "I", "type": "Server", "env": "P", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-25T15:09:59Z", "comment": "", "groups": [39, 41, 61], "system_users": [40, 10, 47], "tags": []}}, {"model": "audits.loginlog", "pk": 1, "fields": {"username": "admin", "name": "Administrator", "login_type": "W", "terminal": "", "login_ip": "192.168.152.1", "login_city": "\u672a\u5206\u914d\u6216\u8005\u5185\u7f51IP", "user_agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safa", "date_login": "2016-11-25T15:09:30Z"}}, {"model": "sessions.session", "pk": "p17eqr9fvt6pu105mwwq3hthzx4odk4d", "fields": {"session_data": "YTE3NDM3YzAwNmViYzNjZDAyMTM3M2UyMjJhNDEwZDJiYzU5ZDc2Zjp7Il9hdXRoX3VzZXJfaGFzaCI6IjY4ZWFlZmFjOTAzY2Q4NDRhMGE0NGIwMTcxNjJmOWJmMDIyZDg1MjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-12-09T15:09:30Z"}}, {"model": "users.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$30000$RwSpXYAYQGbQ$PADpsQmM+cO5Y/R1CVSx3qNV4EbGIm2k+iMBXUtwvNc=", "last_login": "2016-11-25T15:09:30Z", "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T06:50:28Z", "username": "admin", "name": "Administrator", "email": "admin@jumpserver.org", "role": "Admin", "avatar": "", "wechat": "", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Administrator is the super user of system", "is_first_login": false, "date_expired": "2086-11-08T06:50:28Z", "created_by": "System", "user_permissions": [], "groups": [1]}}, {"model": "users.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$30000$XJZp0aQBeRAG$dHfyof84IV3aDem5bnii/COVdU81p+NFkA1DrUG6Utc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:44Z", "username": "tammy78", "name": "Teresa Morris", "email": "judith@gigaclub.info", "role": "User", "avatar": "", "wechat": "lisa85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam non mauris.", "is_first_login": false, "date_expired": "2086-11-08T15:09:44Z", "created_by": "admin", "user_permissions": [], "groups": [1, 54]}}, {"model": "users.user", "pk": 3, "fields": {"password": "pbkdf2_sha256$30000$OxM3XgQA0zDx$UV0TD96oNs5QK8jfVtkG5xPcVTkhYGtwh7dLzyXg0s8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:44Z", "username": "paula84", "name": "Julia Owens", "email": "christina@brainverse.gov", "role": "Admin", "avatar": "", "wechat": "julie93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "is_first_login": false, "date_expired": "2086-11-08T15:09:44Z", "created_by": "tammy78", "user_permissions": [], "groups": [1, 54]}}, {"model": "users.user", "pk": 4, "fields": {"password": "pbkdf2_sha256$30000$YKClUrsqdJqR$1XPE1uZZIn8PLS6H5xOh6v52VQR39IDAckxdTvrs31Y=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "louise64", "name": "Judy Harrison", "email": "virginia@tanoodle.org", "role": "User", "avatar": "", "wechat": "bonnie73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "tammy78", "user_permissions": [], "groups": [1, 55]}}, {"model": "users.user", "pk": 5, "fields": {"password": "pbkdf2_sha256$30000$Y67y3AVqapX4$bEOTOTRk06UDjbb2/1eAwhq78J1vsDg9gwNkdpJC+MI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "christina72", "name": "Evelyn Crawford", "email": "amanda@livepath.name", "role": "User", "avatar": "", "wechat": "ann75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus id sapien in sapien iaculis congue.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "tammy78", "user_permissions": [], "groups": [1, 85]}}, {"model": "users.user", "pk": 6, "fields": {"password": "pbkdf2_sha256$30000$6we1yCZJ6hBN$r2v51lHHQDDdjpMb4q9myBqAegI6v96fQLk3dSC8LXA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "christine76", "name": "Catherine James", "email": "maria@mita.net", "role": "Admin", "avatar": "", "wechat": "melissa81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus sit amet erat.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "paula84", "user_permissions": [], "groups": [1, 41]}}, {"model": "users.user", "pk": 7, "fields": {"password": "pbkdf2_sha256$30000$96wRbNAEId3f$Emy4d2c0aLFfqpkMl8mYVbce1JCkjSsKt8hHpEBM9GU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "ann64", "name": "Virginia Wells", "email": "marilyn@innotype.org", "role": "Admin", "avatar": "", "wechat": "deborah68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "paula84", "user_permissions": [], "groups": [1, 99]}}, {"model": "users.user", "pk": 8, "fields": {"password": "pbkdf2_sha256$30000$7nkgLVAQ4mS5$dGEBl+vky8E+76PfPsXHz8BVQrtc2xWb4N/wstMbhbc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "shirley87", "name": "Jacqueline Wilson", "email": "lois@realfire.biz", "role": "User", "avatar": "", "wechat": "beverly90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "ann64", "user_permissions": [], "groups": [1, 94]}}, {"model": "users.user", "pk": 9, "fields": {"password": "pbkdf2_sha256$30000$MscvVnkpTYaq$je5YNc8lYGkL2A0BceuTBR/CQF7S89UUZJnegGHjQgU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "marilyn76", "name": "Jane Nichols", "email": "tina@quinu.info", "role": "User", "avatar": "", "wechat": "bonnie80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "louise64", "user_permissions": [], "groups": [1, 15]}}, {"model": "users.user", "pk": 10, "fields": {"password": "pbkdf2_sha256$30000$Jgme7eL5GqWy$JlSOD3X4SXPHQbhX/Uoz3+N6iamBEilTDIiS0JS8z9I=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "lillian92", "name": "Alice Gardner", "email": "ann@skibox.net", "role": "User", "avatar": "", "wechat": "ruby89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur convallis.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "louise64", "user_permissions": [], "groups": [1, 44]}}, {"model": "users.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$30000$BwAIPElIcy31$713S3dxaiQmF0CJi1NJQNvOL7B3UmsBtp+HgBdWbSlk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "kathleen86", "name": "Donna Morris", "email": "joan@flashdog.mil", "role": "User", "avatar": "", "wechat": "norma76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam molestie nibh in lectus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "lillian92", "user_permissions": [], "groups": [1, 46]}}, {"model": "users.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$30000$qhznx37yeEuH$XRkGwbMJGv9Lp/PyXI9VrBrpX0khBhrgqp4qMjgcfkk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "pamela79", "name": "Ashley Snyder", "email": "melissa@gigabox.net", "role": "Admin", "avatar": "", "wechat": "barbara73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam molestie nibh in lectus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "kathleen86", "user_permissions": [], "groups": [1, 35]}}, {"model": "users.user", "pk": 13, "fields": {"password": "pbkdf2_sha256$30000$Vw6DDkTg6fid$2Ly93EjA+Lcb3881kXtbR0vFLNlFeEZGhBp0oQOkmTE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "pamela77", "name": "Ruth Porter", "email": "linda@kwideo.edu", "role": "User", "avatar": "", "wechat": "amanda63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "ann64", "user_permissions": [], "groups": [1, 47]}}, {"model": "users.user", "pk": 14, "fields": {"password": "pbkdf2_sha256$30000$i6NDktkejvcQ$c63DI/g3gLAEYm2BdEv9/FdL/cQPhCP0y0HTzus/tns=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "jane86", "name": "Mary Black", "email": "sandra@browsedrive.com", "role": "User", "avatar": "", "wechat": "rachel68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "christine76", "user_permissions": [], "groups": [1, 16]}}, {"model": "users.user", "pk": 15, "fields": {"password": "pbkdf2_sha256$30000$YF95nxv1BPgJ$AY2sO/wZ1HC26WRRyPc/UcI1oAwDmtGTj2julEHnHBU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "virginia93", "name": "Lori Fox", "email": "irene@myworks.mil", "role": "User", "avatar": "", "wechat": "jacqueline71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "pamela77", "user_permissions": [], "groups": [1, 93]}}, {"model": "users.user", "pk": 16, "fields": {"password": "pbkdf2_sha256$30000$vaKbdZUGU2jG$ilvbQhOzQLWYoNmy9Bjb/8Py/xfngUkeokvHks5zQO0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "robin88", "name": "Tina Jenkins", "email": "kimberly@browseblab.info", "role": "Admin", "avatar": "", "wechat": "jean89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla nisl.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "paula84", "user_permissions": [], "groups": [1, 71]}}, {"model": "users.user", "pk": 17, "fields": {"password": "pbkdf2_sha256$30000$AVaPxcsT9oMK$/OzGzejuovJXGPzhsp+pyBb1sTgrIY2R67Cj18BYuhk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "brenda70", "name": "Tammy Russell", "email": "irene@mydo.info", "role": "Admin", "avatar": "", "wechat": "deborah87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla justo.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "ann64", "user_permissions": [], "groups": [1, 91]}}, {"model": "users.user", "pk": 18, "fields": {"password": "pbkdf2_sha256$30000$4UeBnUoIN2Sm$GwEuA+QUEnqOVoAh3i5BbQ8FBCOQUTJMkJU2LaLit8c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "melissa72", "name": "Gloria Bryant", "email": "alice@tazzy.name", "role": "Admin", "avatar": "", "wechat": "rachel80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "pamela79", "user_permissions": [], "groups": [1, 23]}}, {"model": "users.user", "pk": 19, "fields": {"password": "pbkdf2_sha256$30000$3xe7PE1lw1yp$s8d/7fLPdIZDbJStdoALG8NDBALRmQEiA1PUP5R3tgk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "maria92", "name": "Theresa Day", "email": "paula@demimbu.gov", "role": "User", "avatar": "", "wechat": "ruth87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum sed magna at nunc commodo placerat.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "ann64", "user_permissions": [], "groups": [1, 86]}}, {"model": "users.user", "pk": 20, "fields": {"password": "pbkdf2_sha256$30000$tuqXYLRPVbPB$SUmL54Z8RFog1zWhJhh0DqyLOt23lMn0URTtROZjT10=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:45Z", "username": "amy65", "name": "Alice Crawford", "email": "louise@thoughtworks.org", "role": "User", "avatar": "", "wechat": "martha85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In sagittis dui vel nisl.", "is_first_login": false, "date_expired": "2086-11-08T15:09:45Z", "created_by": "marilyn76", "user_permissions": [], "groups": [1, 44]}}, {"model": "users.user", "pk": 21, "fields": {"password": "pbkdf2_sha256$30000$qyiukf47LtN3$tPD6M0Rotm+eFpiVgXV28vPRceNtMf6hM/518yYZRMg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "bonnie76", "name": "Maria Alvarez", "email": "gloria@chatterbridge.info", "role": "User", "avatar": "", "wechat": "judy70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla tellus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "admin", "user_permissions": [], "groups": [1]}}, {"model": "users.user", "pk": 22, "fields": {"password": "pbkdf2_sha256$30000$hoLoSWZM9UHY$naOPr2ZUUD7ccsZXmgG1o3VCuYxlAONAXOtA5/LBvSk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "ruth90", "name": "Frances Long", "email": "janet@jaloo.name", "role": "User", "avatar": "", "wechat": "donna71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec semper sapien a libero.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "ann64", "user_permissions": [], "groups": [1, 53]}}, {"model": "users.user", "pk": 23, "fields": {"password": "pbkdf2_sha256$30000$lUYxzgdzxXB7$pmzYur8mUeVTXhH2MMjxbAyWjsC9dAlYYRqQLRZHw3c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "ruth80", "name": "Cynthia Chapman", "email": "jennifer@brainlounge.net", "role": "User", "avatar": "", "wechat": "doris80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "tammy78", "user_permissions": [], "groups": [1, 12]}}, {"model": "users.user", "pk": 24, "fields": {"password": "pbkdf2_sha256$30000$m8OXhvkjvSm8$H4dWAJEigFDqdcrR8tMAzpxH2pH9xBgnHI0m/CAwZsE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "joyce91", "name": "Sara Gonzales", "email": "gloria@zoonder.net", "role": "User", "avatar": "", "wechat": "janet63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Etiam vel augue.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "jane86", "user_permissions": [], "groups": [1, 3]}}, {"model": "users.user", "pk": 25, "fields": {"password": "pbkdf2_sha256$30000$tliEzAJN0DeP$PcEsb/YvylpjoTv9FshMOxUdWpq7ekOwf0deP75KxTQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "karen63", "name": "Jane Banks", "email": "janice@zoombox.biz", "role": "Admin", "avatar": "", "wechat": "wanda76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "melissa72", "user_permissions": [], "groups": [1, 67]}}, {"model": "users.user", "pk": 26, "fields": {"password": "pbkdf2_sha256$30000$CVH5pXJplMvs$WEWHA6eKYbZtpJ6WnSSfwbI2LIgxJQG0OUS+meG0FRE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "joan65", "name": "Ann Griffin", "email": "denise@oyonder.edu", "role": "Admin", "avatar": "", "wechat": "melissa76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas rhoncus aliquam lacus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "tammy78", "user_permissions": [], "groups": [1, 100]}}, {"model": "users.user", "pk": 27, "fields": {"password": "pbkdf2_sha256$30000$iaKzQQjNDJXV$aVN+QSdvl/90IVQnCq1kBIT9mEIcA4j6GOXNkLVgUXM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "julie75", "name": "Marie Johnson", "email": "anne@zoonder.gov", "role": "Admin", "avatar": "", "wechat": "heather70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur in libero ut massa volutpat convallis.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "virginia93", "user_permissions": [], "groups": [1, 63]}}, {"model": "users.user", "pk": 28, "fields": {"password": "pbkdf2_sha256$30000$YhGIxDrZKuEM$8Kr+hyRfP/U9/iZrvrbHLxiP8Gt3boJUqVc8LiFEHFc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "robin78", "name": "Gloria Cooper", "email": "nancy@katz.com", "role": "Admin", "avatar": "", "wechat": "jane73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "ruth80", "user_permissions": [], "groups": [1, 78]}}, {"model": "users.user", "pk": 29, "fields": {"password": "pbkdf2_sha256$30000$9hnH2gqXNRdP$iXK3t4xcoYvYpz1RPydAGeybhlBG6rq9rtgtCpbouOw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "teresa92", "name": "Christina Phillips", "email": "jean@babbleset.mil", "role": "Admin", "avatar": "", "wechat": "betty84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "pamela79", "user_permissions": [], "groups": [1, 60]}}, {"model": "users.user", "pk": 30, "fields": {"password": "pbkdf2_sha256$30000$Pkju9KS1M1n6$0vaFKSmnmZbGBJLUFf35YOL0YSj6sjgEMa3MvhCX78k=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "kelly87", "name": "Sandra Montgomery", "email": "beverly@ooba.org", "role": "Admin", "avatar": "", "wechat": "elizabeth79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum rutrum rutrum neque.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "virginia93", "user_permissions": [], "groups": [1, 9]}}, {"model": "users.user", "pk": 31, "fields": {"password": "pbkdf2_sha256$30000$gzGYd102XHOK$oodOpSbsp00D64SavCmvZrFSnyOfRoSwjbCBy8ruZjI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "lawrence66", "name": "Karen Franklin", "email": "lillian@skibox.biz", "role": "User", "avatar": "", "wechat": "michelle63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "melissa72", "user_permissions": [], "groups": [1, 92]}}, {"model": "users.user", "pk": 32, "fields": {"password": "pbkdf2_sha256$30000$3Bfmcud2JWd5$NRMcVOem8K4SCXvHwvnhH2mAr1qOir+JeBNiLf9rEYc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "barbara72", "name": "Jennifer Lane", "email": "marilyn@ailane.biz", "role": "Admin", "avatar": "", "wechat": "shirley92", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "jane86", "user_permissions": [], "groups": [1, 76]}}, {"model": "users.user", "pk": 33, "fields": {"password": "pbkdf2_sha256$30000$CCTUXQtAhspv$9FsEi/bKVpy9mZa0GWFESW7sOv1HvxZyQSOiS0uL7ho=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "teresa78", "name": "Nicole Hanson", "email": "virginia@oba.info", "role": "Admin", "avatar": "", "wechat": "nicole63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis aliquam convallis nunc.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "maria92", "user_permissions": [], "groups": [1, 34]}}, {"model": "users.user", "pk": 34, "fields": {"password": "pbkdf2_sha256$30000$XbY1c4WKhNHG$YDaPFkRLzEvCljhwPpE6xc6c4VmiOgioVCXOl4Cio04=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "denise69", "name": "Denise Vasquez", "email": "rachel@tekfly.mil", "role": "User", "avatar": "", "wechat": "susan66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi ut odio.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "marilyn76", "user_permissions": [], "groups": [1, 2]}}, {"model": "users.user", "pk": 35, "fields": {"password": "pbkdf2_sha256$30000$mGl0HyiPmXg8$Iq9dyZsRF+JJQc1q8gWnzVhGcRbN8WEzobMFrCrwNPk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "jennifer79", "name": "Christina Gordon", "email": "alice@aimbo.name", "role": "User", "avatar": "", "wechat": "christina82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras pellentesque volutpat dui.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "paula84", "user_permissions": [], "groups": [1, 22]}}, {"model": "users.user", "pk": 36, "fields": {"password": "pbkdf2_sha256$30000$zHPAF78iZgrS$e2HmUQUYNP31ZtxHh5dd4KEl13vpXpSWjpGQgqGz2qU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:46Z", "username": "tina91", "name": "Ruby Johnson", "email": "phyllis@flipstorm.info", "role": "Admin", "avatar": "", "wechat": "angela66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2086-11-08T15:09:46Z", "created_by": "admin", "user_permissions": [], "groups": [1, 53]}}, {"model": "users.user", "pk": 37, "fields": {"password": "pbkdf2_sha256$30000$FrbVB1p2MOFN$4GD+hKJf9LziEqtcXRebYeaNfqB2lQnXxD2VGCjQF9Q=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "marilyn90", "name": "Joan Bennett", "email": "virginia@yodel.edu", "role": "User", "avatar": "", "wechat": "stephanie70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla nisl.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "ruth80", "user_permissions": [], "groups": [1, 61]}}, {"model": "users.user", "pk": 38, "fields": {"password": "pbkdf2_sha256$30000$4hifkQB4Dkvn$43lAjv3YFD3mbjOxExdlF2oJgX0SXnMh+PNOeeKIkIQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "evelyn82", "name": "Bonnie Spencer", "email": "ann@skajo.biz", "role": "User", "avatar": "", "wechat": "karen65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "louise64", "user_permissions": [], "groups": [1, 58]}}, {"model": "users.user", "pk": 39, "fields": {"password": "pbkdf2_sha256$30000$gflQ5qBu90G8$XTWgr3KxFc1faKOTrZO4bnBcjhGI2CcDXi5y2KKaeRY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "ann75", "name": "Diane Martinez", "email": "elizabeth@kimia.net", "role": "Admin", "avatar": "", "wechat": "katherine91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "ann64", "user_permissions": [], "groups": [1, 31]}}, {"model": "users.user", "pk": 40, "fields": {"password": "pbkdf2_sha256$30000$LuXOPRkrV3NH$WGQI2xg74VMjG9lvZH3abvTZwDEuQ+EbVJYwH8KtsYQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "frances82", "name": "Sharon Anderson", "email": "virginia@voonder.org", "role": "User", "avatar": "", "wechat": "melissa66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "robin78", "user_permissions": [], "groups": [1, 6]}}, {"model": "users.user", "pk": 41, "fields": {"password": "pbkdf2_sha256$30000$l75AL6MqTWiX$YzJASH95tDc0nbocjymaGU5Cq3DliymrCxvYZNClLv8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "margaret94", "name": "Wanda Butler", "email": "janet@avamm.edu", "role": "User", "avatar": "", "wechat": "jessica71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "marilyn76", "user_permissions": [], "groups": [1, 61]}}, {"model": "users.user", "pk": 42, "fields": {"password": "pbkdf2_sha256$30000$RRznnVWegk5n$PHQtpy+XZ1MC+pY/K5MysZsq6ZfBhb1xCvdOxB979mo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "andrea71", "name": "Amanda Rivera", "email": "michelle@leenti.biz", "role": "User", "avatar": "", "wechat": "heather87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse potenti.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "lawrence66", "user_permissions": [], "groups": [1, 62]}}, {"model": "users.user", "pk": 43, "fields": {"password": "pbkdf2_sha256$30000$r1il7SvGVyFK$nNidJdVnghl15CBqC6gBqngPkpglBT5gPwCeOuVKNb8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "paula67", "name": "Denise Chapman", "email": "pamela@browsecat.mil", "role": "Admin", "avatar": "", "wechat": "jacqueline71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "marilyn76", "user_permissions": [], "groups": [1, 92]}}, {"model": "users.user", "pk": 44, "fields": {"password": "pbkdf2_sha256$30000$dscBSbYRqwCP$qiOFlmWqwY29+O14RhdPczgR455+75+uGsi9Je2kRUk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "maria86", "name": "Amy George", "email": "laura@jaxspan.edu", "role": "Admin", "avatar": "", "wechat": "kathleen63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris ullamcorper purus sit amet nulla.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "jane86", "user_permissions": [], "groups": [1, 55]}}, {"model": "users.user", "pk": 45, "fields": {"password": "pbkdf2_sha256$30000$HzE4aKqzsJqR$pV5y/9K+hKNCOSXoXdXqMrTrHGdisSmdKj+2Hj8PHuQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "ruth83", "name": "Kathleen Gordon", "email": "kathy@pixonyx.biz", "role": "Admin", "avatar": "", "wechat": "shirley77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse ornare consequat lectus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "tina91", "user_permissions": [], "groups": [1, 16]}}, {"model": "users.user", "pk": 46, "fields": {"password": "pbkdf2_sha256$30000$IZs7oacW8aRe$S5BhNMdLrfMWubcHw/z5F369l7yr2XYlo7uYyNhPtio=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "joyce76", "name": "Evelyn White", "email": "andrea@jetwire.mil", "role": "Admin", "avatar": "", "wechat": "amy68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam non mauris.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "admin", "user_permissions": [], "groups": [1, 91]}}, {"model": "users.user", "pk": 47, "fields": {"password": "pbkdf2_sha256$30000$vAksKEOt6mq8$rbYcsWWKZ8RGKsDNHpMsSB8kHlh7y/FroTlqynwKFk0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "amy79", "name": "Carolyn Howell", "email": "virginia@zoonder.mil", "role": "Admin", "avatar": "", "wechat": "michelle84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque viverra pede ac diam.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "melissa72", "user_permissions": [], "groups": [1, 4]}}, {"model": "users.user", "pk": 48, "fields": {"password": "pbkdf2_sha256$30000$591B0w32RHOa$8ZwWUHCfjYuPDVJu3xlUoi/VC1nU19G6WMKwX2FBqxw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "kathleen65", "name": "Angela Fisher", "email": "paula@eabox.com", "role": "User", "avatar": "", "wechat": "anne73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "lawrence66", "user_permissions": [], "groups": [1, 81]}}, {"model": "users.user", "pk": 49, "fields": {"password": "pbkdf2_sha256$30000$BNULmpVIfa4e$U80ie7z8oOGotsKXl/23pJZK+WXsUATyJ/5b9T1SJTk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "susan91", "name": "Nicole Wells", "email": "carolyn@roodel.info", "role": "User", "avatar": "", "wechat": "martha72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "virginia93", "user_permissions": [], "groups": [1, 93]}}, {"model": "users.user", "pk": 50, "fields": {"password": "pbkdf2_sha256$30000$Bz86G3EvIFG7$l7IPk5dYlUhhmTp/VtpzZhvOMPM3rLnX0sZDkfI+S3M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "susan80", "name": "Kimberly Morgan", "email": "virginia@browsedrive.com", "role": "User", "avatar": "", "wechat": "amy75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "louise64", "user_permissions": [], "groups": [1, 16]}}, {"model": "users.user", "pk": 51, "fields": {"password": "pbkdf2_sha256$30000$wLCFD86aidVr$pSkvXTj7uD5PUDWyvVU+zY7HP1mI2O141JMCExwp6Qk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "kelly67", "name": "Cynthia Brooks", "email": "nicole@layo.biz", "role": "User", "avatar": "", "wechat": "sara69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "maria86", "user_permissions": [], "groups": [1, 45]}}, {"model": "users.user", "pk": 52, "fields": {"password": "pbkdf2_sha256$30000$nM53J9Aa1HWk$ej7bCOyoVdNWFGDgZiCmKIWdNAg04DxFoS+a9VYEhBk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:47Z", "username": "lillian64", "name": "Jane Carter", "email": "frances@browsezoom.gov", "role": "Admin", "avatar": "", "wechat": "shirley77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed ante.", "is_first_login": false, "date_expired": "2086-11-08T15:09:47Z", "created_by": "marilyn90", "user_permissions": [], "groups": [1, 95]}}, {"model": "users.user", "pk": 53, "fields": {"password": "pbkdf2_sha256$30000$hnMpI9aUkJJO$JtDcCANE7fj6cAVl4qxnEb8xbkuk7vg1a6fpiZ1hBjg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "wanda72", "name": "Lori Meyer", "email": "kathy@voomm.mil", "role": "User", "avatar": "", "wechat": "nancy88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In blandit ultrices enim.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "ann75", "user_permissions": [], "groups": [1, 40]}}, {"model": "users.user", "pk": 54, "fields": {"password": "pbkdf2_sha256$30000$txZ5DMyi6TuS$eJ9ClA/KVOy0dO0Iysvg7WVU78AQwoCvkt5Cj6NdHCo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "nicole93", "name": "Emily Bryant", "email": "donna@twimbo.net", "role": "User", "avatar": "", "wechat": "brenda69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus tortor.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "kelly67", "user_permissions": [], "groups": [1, 80]}}, {"model": "users.user", "pk": 55, "fields": {"password": "pbkdf2_sha256$30000$oZmEMkmEZWdB$MgK3Q75CEivMeNxajkUuyxtyADKfiIvlh/6c1ciJYh0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "debra65", "name": "Anne Sanchez", "email": "marilyn@mycat.net", "role": "Admin", "avatar": "", "wechat": "joyce88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla justo.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "marilyn76", "user_permissions": [], "groups": [1, 75]}}, {"model": "users.user", "pk": 56, "fields": {"password": "pbkdf2_sha256$30000$PBarLnS3CsGE$SavRK+T8HVa2jRxT2y+QlS3peCbuKTZLYzehZaETWLM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "nicole76", "name": "Nancy Harper", "email": "tina@shuffletag.net", "role": "User", "avatar": "", "wechat": "margaret65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce consequat.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "debra65", "user_permissions": [], "groups": [1, 77]}}, {"model": "users.user", "pk": 57, "fields": {"password": "pbkdf2_sha256$30000$milkARpPfzCa$9PApNqrrZ3UGZtFGaun1qr66Q/YqlBDRrQUGwn9auak=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "catherine93", "name": "Barbara Burton", "email": "patricia@edgeclub.info", "role": "User", "avatar": "", "wechat": "elizabeth65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam tristique tortor eu pede.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "frances82", "user_permissions": [], "groups": [1, 48]}}, {"model": "users.user", "pk": 58, "fields": {"password": "pbkdf2_sha256$30000$IcmAoRCRHRFs$ZoQ3a5MCvvKDlYSiB2nL9nSbgmQaog97Rw33L7HwQWE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "laura78", "name": "Brenda Webb", "email": "brenda@oodoo.mil", "role": "Admin", "avatar": "", "wechat": "gloria91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse accumsan tortor quis turpis.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "ruth80", "user_permissions": [], "groups": [1, 22]}}, {"model": "users.user", "pk": 59, "fields": {"password": "pbkdf2_sha256$30000$NooXSe1gWsRe$QmW0I5tzhJ0vaU5GBujIeQm9P0Fmg275dVGLoPJ+upE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "maria87", "name": "Kathy Hicks", "email": "anna@bubbletube.com", "role": "Admin", "avatar": "", "wechat": "laura93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "christine76", "user_permissions": [], "groups": [1, 74]}}, {"model": "users.user", "pk": 60, "fields": {"password": "pbkdf2_sha256$30000$gGzUrZ0CfCzr$PhahUA9ZmQbzlgtLY2IGAnFMXE22iWQ/7QW4QxzifxE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "martha84", "name": "Nicole Palmer", "email": "sarah@voolia.info", "role": "Admin", "avatar": "", "wechat": "denise86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "ann75", "user_permissions": [], "groups": [1, 14]}}, {"model": "users.user", "pk": 61, "fields": {"password": "pbkdf2_sha256$30000$ASqmSCJ3jCtc$QeQT3b3C9jndSndDapF6WGjzgPHz5v4gyf8ArRcmmMU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "kimberly70", "name": "Margaret Banks", "email": "kathleen@babbleopia.mil", "role": "User", "avatar": "", "wechat": "kathleen66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed sagittis.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "joyce76", "user_permissions": [], "groups": [1, 87]}}, {"model": "users.user", "pk": 62, "fields": {"password": "pbkdf2_sha256$30000$9v1ivZHjWhbB$t1cfk3tV1qokuf6xEYF6itkiZ6Pu+7ITpqRoaNnGp5E=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "marie84", "name": "Mildred Riley", "email": "bonnie@realbuzz.net", "role": "Admin", "avatar": "", "wechat": "kathy66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In blandit ultrices enim.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "robin78", "user_permissions": [], "groups": [1, 87]}}, {"model": "users.user", "pk": 63, "fields": {"password": "pbkdf2_sha256$30000$N1h1ufWAfAW4$P9eIVwU7FHPUZr500AMOI7zIq8v8sdQFU3n+J4xL/rg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "amanda74", "name": "Cheryl Garza", "email": "marilyn@oba.com", "role": "Admin", "avatar": "", "wechat": "judith89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam tristique tortor eu pede.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "evelyn82", "user_permissions": [], "groups": [1, 84]}}, {"model": "users.user", "pk": 64, "fields": {"password": "pbkdf2_sha256$30000$y5YKe2e3MNbu$Pe8tBzLqi+wVL5y+eB+GwSTa68ItJ8mAIZBXr0ebkCk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "sandra69", "name": "Lois Price", "email": "louise@youspan.info", "role": "User", "avatar": "", "wechat": "diane89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "paula67", "user_permissions": [], "groups": [1, 54]}}, {"model": "users.user", "pk": 65, "fields": {"password": "pbkdf2_sha256$30000$tZdApYavwuJy$eXZnO9R9yygXd25P4XCmmryclJd7LPIecwyY4jdyMWw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "tammy69", "name": "Alice Howard", "email": "diane@wikibox.edu", "role": "User", "avatar": "", "wechat": "margaret77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin eu mi.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "julie75", "user_permissions": [], "groups": [1, 60]}}, {"model": "users.user", "pk": 66, "fields": {"password": "pbkdf2_sha256$30000$yvkVDSKYgeZZ$gXF75PcA6YgO5KsKXwnJqBTqdZRC7yE8nB2Vl1Njk6M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "martha88", "name": "Alice Montgomery", "email": "tina@zoozzy.edu", "role": "Admin", "avatar": "", "wechat": "sara71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla nisl.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "tammy78", "user_permissions": [], "groups": [1, 82]}}, {"model": "users.user", "pk": 67, "fields": {"password": "pbkdf2_sha256$30000$mLtIz7vXbpc8$ezavW5xAkpC0eB7e+L9oxjFYs8f+avMJ3sayQrwsWME=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:48Z", "username": "jacqueline94", "name": "Andrea Campbell", "email": "ashley@fanoodle.name", "role": "Admin", "avatar": "", "wechat": "heather72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla ac enim.", "is_first_login": false, "date_expired": "2086-11-08T15:09:48Z", "created_by": "debra65", "user_permissions": [], "groups": [1, 60]}}, {"model": "users.user", "pk": 68, "fields": {"password": "pbkdf2_sha256$30000$Dq5sUw7y9xnb$nKVyJoVeitrTWn1447W+cZz9vnVGKP4T/ffxk2/vwL8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "ashley81", "name": "Julia Spencer", "email": "julia@katz.biz", "role": "Admin", "avatar": "", "wechat": "paula91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "martha84", "user_permissions": [], "groups": [1, 39]}}, {"model": "users.user", "pk": 69, "fields": {"password": "pbkdf2_sha256$30000$w3jCQSgguiXe$BexulbgaOS4pZ8HO2nhwF64VXwuvFsvSfgrNSsIqsc4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "joyce84", "name": "Jennifer Wood", "email": "virginia@shufflebeat.edu", "role": "User", "avatar": "", "wechat": "lori70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "joyce76", "user_permissions": [], "groups": [1, 22]}}, {"model": "users.user", "pk": 70, "fields": {"password": "pbkdf2_sha256$30000$419vZQWvTfDq$EzhF1vkMHs+jlKdHN2lEZPxf0Svy6mxpWPR+SPwRMjI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "phyllis86", "name": "Jean Hawkins", "email": "lois@riffpedia.org", "role": "Admin", "avatar": "", "wechat": "theresa68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla facilisi.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "ruth80", "user_permissions": [], "groups": [1, 21]}}, {"model": "users.user", "pk": 71, "fields": {"password": "pbkdf2_sha256$30000$RPgO2YD3xC9j$sHLkceITYKmj0rCDBFZvYbI9t0LBZRTv0cHaFfYXiNc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "janet64", "name": "Karen Alvarez", "email": "heather@dynava.name", "role": "User", "avatar": "", "wechat": "joyce79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent blandit.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "jennifer79", "user_permissions": [], "groups": [1, 100]}}, {"model": "users.user", "pk": 72, "fields": {"password": "pbkdf2_sha256$30000$GXZybDJ3AOag$DW0I2WKhL5uaGfRoYUBGpgnRQbM6CLaJSUHo7jZEN08=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "nancy64", "name": "Linda Morgan", "email": "diana@divavu.org", "role": "User", "avatar": "", "wechat": "barbara87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris lacinia sapien quis libero.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "ruth90", "user_permissions": [], "groups": [1, 99]}}, {"model": "users.user", "pk": 73, "fields": {"password": "pbkdf2_sha256$30000$0CoVKvdHVGwO$tjL/m0UJyaIwIE9m2ikJ3gNrWrm/oiD5pAaZSFpR5yM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "betty65", "name": "Jacqueline Watson", "email": "norma@bluezoom.com", "role": "Admin", "avatar": "", "wechat": "judy80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi non quam nec dui luctus rutrum.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "shirley87", "user_permissions": [], "groups": [1, 62]}}, {"model": "users.user", "pk": 74, "fields": {"password": "pbkdf2_sha256$30000$1jzIhes7P4xj$UFYVHvoqDbIZOfRvVPm5cmySoAroG06mWETJmFW7ltY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "jennifer89", "name": "Marie Willis", "email": "nicole@geba.info", "role": "User", "avatar": "", "wechat": "shirley74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse accumsan tortor quis turpis.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "wanda72", "user_permissions": [], "groups": [1, 65]}}, {"model": "users.user", "pk": 75, "fields": {"password": "pbkdf2_sha256$30000$VYJ0vsScr6Rj$nBzWtxlJfpYZCdULJ5YdG1iHqRvoE7xrpXoiz3iuDFo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "janice65", "name": "Martha Alvarez", "email": "jessica@tagopia.org", "role": "Admin", "avatar": "", "wechat": "kathleen89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer tincidunt ante vel ipsum.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "nicole93", "user_permissions": [], "groups": [1, 52]}}, {"model": "users.user", "pk": 76, "fields": {"password": "pbkdf2_sha256$30000$9556Vp0BGeRO$teKDwpWpxAq9ZFSBcAP6Y0dJ4NYzMFlTirXbvmsTWjQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "phyllis80", "name": "Gloria Fuller", "email": "bonnie@demivee.com", "role": "Admin", "avatar": "", "wechat": "christina73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "margaret94", "user_permissions": [], "groups": [1, 55]}}, {"model": "users.user", "pk": 77, "fields": {"password": "pbkdf2_sha256$30000$M0GzNA2ip3rZ$Xy9p3hlfgp8VPgS37aS7GH5jBCXzB2ffERWzzkr8DU4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "judith77", "name": "Virginia Wilson", "email": "melissa@quatz.gov", "role": "Admin", "avatar": "", "wechat": "cynthia87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam molestie nibh in lectus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "lillian92", "user_permissions": [], "groups": [1, 41]}}, {"model": "users.user", "pk": 78, "fields": {"password": "pbkdf2_sha256$30000$z1lFdPZKc7rC$TdTMEsgmtU3Xds4JUphossv2UdTEw/Kf3sTiDYSYKsE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "angela81", "name": "Theresa Gutierrez", "email": "bonnie@browsebug.net", "role": "User", "avatar": "", "wechat": "nancy80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "susan80", "user_permissions": [], "groups": [1, 98]}}, {"model": "users.user", "pk": 79, "fields": {"password": "pbkdf2_sha256$30000$MtAAwImAIbfq$6LvZqjZp4a3keMT1JruSc6NjHAN+ziQEvmDsaoWUfXc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "ashley79", "name": "Julia Johnson", "email": "christine@kwimbee.org", "role": "Admin", "avatar": "", "wechat": "deborah87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed ante.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "debra65", "user_permissions": [], "groups": [1, 6]}}, {"model": "users.user", "pk": 80, "fields": {"password": "pbkdf2_sha256$30000$3PldXSvFNm2M$xo34y4KveRJj+VNn14gfTgHYlBK/2BZQ+4fWFgG2x9A=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "kimberly90", "name": "Janet Watson", "email": "michelle@gabcube.gov", "role": "User", "avatar": "", "wechat": "sarah72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "judith77", "user_permissions": [], "groups": [1, 37]}}, {"model": "users.user", "pk": 81, "fields": {"password": "pbkdf2_sha256$30000$G3vxARPLn4tP$AMQ9byy6qzhpvcf9dqjRO5f31PSWRwzi+1T63GnJPh0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:49Z", "username": "norma87", "name": "Carolyn Williamson", "email": "nicole@tagpad.biz", "role": "Admin", "avatar": "", "wechat": "carol68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "is_first_login": false, "date_expired": "2086-11-08T15:09:49Z", "created_by": "barbara72", "user_permissions": [], "groups": [1, 80]}}, {"model": "users.user", "pk": 82, "fields": {"password": "pbkdf2_sha256$30000$HklqWlFkGORM$i69QClNGQZIObPa0SUVrThyVx1OyXCB1yxK9DZyCtH0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "ashley85", "name": "Christine Andrews", "email": "amy@meevee.net", "role": "User", "avatar": "", "wechat": "karen78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur at ipsum ac tellus semper interdum.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "virginia93", "user_permissions": [], "groups": [1, 21]}}, {"model": "users.user", "pk": 83, "fields": {"password": "pbkdf2_sha256$30000$dWcVIHrMda77$KeieDiam5KGKrPi2DTX5ATF2cLObDmNS2bIukaFhMmg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "doris94", "name": "Denise Henry", "email": "maria@kaymbo.com", "role": "Admin", "avatar": "", "wechat": "christina89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean auctor gravida sem.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "kathleen86", "user_permissions": [], "groups": [1, 43]}}, {"model": "users.user", "pk": 84, "fields": {"password": "pbkdf2_sha256$30000$Q8uRsxkaOYpL$qLw+UadUR5dtJgZxXq4Ln17w54p7ru+YVwrWTGd3jb4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "julia71", "name": "Rose Rodriguez", "email": "jennifer@bluezoom.biz", "role": "User", "avatar": "", "wechat": "betty71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque eget nunc.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "debra65", "user_permissions": [], "groups": [1, 15]}}, {"model": "users.user", "pk": 85, "fields": {"password": "pbkdf2_sha256$30000$6HqfhNa13WkW$gGQrVkBE0d2knsggKsHC9fGoPF5Pb57LNC58enLG+bE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "martha77", "name": "Patricia Sims", "email": "margaret@yakidoo.com", "role": "Admin", "avatar": "", "wechat": "lisa67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In eleifend quam a odio.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "nicole93", "user_permissions": [], "groups": [1, 30]}}, {"model": "users.user", "pk": 86, "fields": {"password": "pbkdf2_sha256$30000$yFtiTzKJTHBJ$WaiQrXzum5TSA9R0P3Zns2mdALjf3rRQekz8+KnNDNQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "marie82", "name": "Melissa Robertson", "email": "norma@dabtype.org", "role": "User", "avatar": "", "wechat": "angela82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "amy79", "user_permissions": [], "groups": [1, 39]}}, {"model": "users.user", "pk": 87, "fields": {"password": "pbkdf2_sha256$30000$ZtDuwdGrUXgY$3GTFFa2/Hblb5vQ6ssYPJGh8Bvd935GUF5aeJ9FM274=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "amy93", "name": "Cheryl Wright", "email": "rose@fiveclub.mil", "role": "Admin", "avatar": "", "wechat": "brenda69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla tellus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "christina72", "user_permissions": [], "groups": [1, 30]}}, {"model": "users.user", "pk": 88, "fields": {"password": "pbkdf2_sha256$30000$HLIpnF8TBeGb$OhsySb2g+S/xjDrHsviz7due5PR1WbZ9/VL+1mI4pWw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "laura87", "name": "Emily Bryant", "email": "christina@aibox.net", "role": "User", "avatar": "", "wechat": "rose71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus in felis.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "martha84", "user_permissions": [], "groups": [1, 9]}}, {"model": "users.user", "pk": 89, "fields": {"password": "pbkdf2_sha256$30000$G2xxhe654T5X$PAer+oK06BGYAQwk+WNf3nL4OfWouroc39M2nkWNsZs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "melissa86", "name": "Annie Williamson", "email": "jacqueline@pixoboo.edu", "role": "User", "avatar": "", "wechat": "stephanie63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi non quam nec dui luctus rutrum.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "janice65", "user_permissions": [], "groups": [1, 47]}}, {"model": "users.user", "pk": 90, "fields": {"password": "pbkdf2_sha256$30000$VMNYSLacPmFV$fNg3fZOD+6567zTtZM0LvnnQrpjc+6aW1yWpKxJIyHM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "rebecca90", "name": "Lisa Williamson", "email": "rebecca@gabvine.org", "role": "User", "avatar": "", "wechat": "ruby94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum rutrum rutrum neque.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "kathleen86", "user_permissions": [], "groups": [1, 2]}}, {"model": "users.user", "pk": 91, "fields": {"password": "pbkdf2_sha256$30000$e3Z0XC4IAUKo$OL6UImG/4RukU9FfI3+BsV7E8lA9UfMZ28kxuJAY1EY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "sandra82", "name": "Doris Rose", "email": "anne@babbleset.com", "role": "Admin", "avatar": "", "wechat": "nicole83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris sit amet eros.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "catherine93", "user_permissions": [], "groups": [1, 77]}}, {"model": "users.user", "pk": 92, "fields": {"password": "pbkdf2_sha256$30000$4eaUedPSKY6c$4SriMEVjTBvG98tWAI5tIFRTfnxw0zeJYC0q4Iw6wXo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "brenda94", "name": "Katherine Marshall", "email": "diana@dabshots.edu", "role": "Admin", "avatar": "", "wechat": "jennifer86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "angela81", "user_permissions": [], "groups": [1, 40]}}, {"model": "users.user", "pk": 93, "fields": {"password": "pbkdf2_sha256$30000$boAcnUMC9JnA$Z2yX5zrhqsaecVZ2Zt4ojVAKXIJ4sDR+pGr5ZC6WIx4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "phyllis89", "name": "Irene Lawrence", "email": "christine@npath.com", "role": "Admin", "avatar": "", "wechat": "cheryl65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur convallis.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "admin", "user_permissions": [], "groups": [1, 27]}}, {"model": "users.user", "pk": 94, "fields": {"password": "pbkdf2_sha256$30000$B26YNpYPb1j0$l2L/FBQV0rKnnsZZ5Lurmg2lxRcqLuWSsMeR9weB0UI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "katherine90", "name": "Marilyn Ortiz", "email": "doris@skiba.biz", "role": "Admin", "avatar": "", "wechat": "carol93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "phyllis80", "user_permissions": [], "groups": [1, 68]}}, {"model": "users.user", "pk": 95, "fields": {"password": "pbkdf2_sha256$30000$9Fn7ys3xM4St$PCDBgAvjjQMpWlHUDFlDRZ8YYtb5NuuRJTNqJaL6Iho=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "angela63", "name": "Diane Hernandez", "email": "annie@zazio.org", "role": "User", "avatar": "", "wechat": "ruby93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "marie82", "user_permissions": [], "groups": [1, 100]}}, {"model": "users.user", "pk": 96, "fields": {"password": "pbkdf2_sha256$30000$Hebf2yppeGpZ$muGZXsavhKI5m2dszU59YuhMW6GdXBlO0zJRqI9oP7U=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:50Z", "username": "robin77", "name": "Lois Rose", "email": "katherine@avaveo.edu", "role": "Admin", "avatar": "", "wechat": "anna71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "is_first_login": false, "date_expired": "2086-11-08T15:09:50Z", "created_by": "janet64", "user_permissions": [], "groups": [1, 90]}}, {"model": "users.user", "pk": 97, "fields": {"password": "pbkdf2_sha256$30000$GaYIkFmPlOgA$S0H8KTc2ZQOFn4/jIzPaeKHU9RR3MjrcrOhEONDuOMc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:51Z", "username": "mildred64", "name": "Annie Lee", "email": "barbara@rhycero.biz", "role": "Admin", "avatar": "", "wechat": "michelle89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "is_first_login": false, "date_expired": "2086-11-08T15:09:51Z", "created_by": "brenda94", "user_permissions": [], "groups": [1, 67]}}, {"model": "users.user", "pk": 98, "fields": {"password": "pbkdf2_sha256$30000$Rwe05mcJGBky$R4sFHyIbOUT0bltobRWPPb83rPY+wgG4MCslhUs7khg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:51Z", "username": "maria75", "name": "Michelle Frazier", "email": "teresa@shuffletag.com", "role": "User", "avatar": "", "wechat": "nancy64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras non velit nec nisi vulputate nonummy.", "is_first_login": false, "date_expired": "2086-11-08T15:09:51Z", "created_by": "lawrence66", "user_permissions": [], "groups": [1, 64]}}, {"model": "users.user", "pk": 99, "fields": {"password": "pbkdf2_sha256$30000$HWPlncJF3k17$4cvofKbbJpAvgWxOzX2DTLS6IeF01htitSrXrNFtUeA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:51Z", "username": "andrea87", "name": "Andrea Daniels", "email": "emily@dazzlesphere.org", "role": "Admin", "avatar": "", "wechat": "evelyn84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer ac neque.", "is_first_login": false, "date_expired": "2086-11-08T15:09:51Z", "created_by": "sandra69", "user_permissions": [], "groups": [1, 73]}}, {"model": "users.user", "pk": 100, "fields": {"password": "pbkdf2_sha256$30000$o4YOUB0a5p9S$aPOVpB9XBJboBESLuWIzaQi5nYomAnNyOQxbHkOv2w0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T15:09:51Z", "username": "melissa85", "name": "Mary Armstrong", "email": "ann@mycat.mil", "role": "Admin", "avatar": "", "wechat": "dorothy69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse potenti.", "is_first_login": false, "date_expired": "2086-11-08T15:09:51Z", "created_by": "susan91", "user_permissions": [], "groups": [1, 99]}}]
\ No newline at end of file
diff --git a/apps/users/templates/users/user_list.html b/apps/users/templates/users/user_list.html
index 1b7f76f5a..f4a353bbd 100644
--- a/apps/users/templates/users/user_list.html
+++ b/apps/users/templates/users/user_list.html
@@ -99,7 +99,7 @@ $(document).ready(function(){
users.push(obj.id)
});
$.ajax({
- url: "{% url "users:export-user" %}",
+ url: "{% url 'users:user-export' %}",
method: 'POST',
data: JSON.stringify({users_id: users}),
dataType: "json",
diff --git a/apps/users/urls/views_urls.py b/apps/users/urls/views_urls.py
index df8db3a88..4741fde60 100644
--- a/apps/users/urls/views_urls.py
+++ b/apps/users/urls/views_urls.py
@@ -23,6 +23,7 @@ urlpatterns = [
name='user-asset-permission-create'),
url(r'^user/(?P[0-9]+)/assets', views.UserGrantedAssetView.as_view(), name='user-granted-asset'),
url(r'^user/(?P[0-9]+)/login-history', views.UserDetailView.as_view(), name='user-login-history'),
+ url(r'^user/export/', views.UserExportView.as_view(), name='user-export'),
url(r'^first-login/$', views.UserFirstLoginView.as_view(), name='user-first-login'),
url(r'^user/import/$', views.BulkImportUserView.as_view(), name='user-import'),
# url(r'^user/(?P[0-9]+)/assets-perm$', views.UserDetailView.as_view(), name='user-detail'),
@@ -40,5 +41,4 @@ urlpatterns = [
name='user-group-asset-permission-create'),
url(r'^user-group/(?P[0-9]+)/assets', views.UserGroupGrantedAssetView.as_view(),
name='user-group-granted-asset'),
- url(r'^export/user/', views.ExportUserView.as_view(), name='export-user'),
]
diff --git a/apps/users/views.py b/apps/users/views.py
index 345b4d6c3..77e72eecd 100644
--- a/apps/users/views.py
+++ b/apps/users/views.py
@@ -557,7 +557,7 @@ class BulkImportUserView(AdminUserRequiredMixin, JSONResponseMixin, FormView):
@method_decorator(csrf_exempt, name='dispatch')
-class ExportUserView(View):
+class UserExportView(View):
def get(self, request, *args, **kwargs):
spm = request.GET.get('spm', '')
users_id = cache.get(spm)
@@ -588,6 +588,6 @@ class ExportUserView(View):
return HttpResponse('Json object not valid', status=400)
spm = uuid.uuid4().get_hex()
cache.set(spm, users_id, 300)
- url = reverse('users:export-user-csv') + '?spm=%s' % spm
+ url = reverse('users:user-export') + '?spm=%s' % spm
return JsonResponse({'redirect': url})
diff --git a/utils/clean_migrations.sh b/utils/clean_migrations.sh
index 2c3b82246..c02cea498 100755
--- a/utils/clean_migrations.sh
+++ b/utils/clean_migrations.sh
@@ -2,5 +2,5 @@
#
for app in users assets perms audits teminal ops;do
- rm -f $app/migrations/000*
+ rm -f ../apps/$app/migrations/000*
done
diff --git a/utils/make_fake_json.sh b/utils/make_fake_json.sh
index 657b36d07..10fa79a52 100644
--- a/utils/make_fake_json.sh
+++ b/utils/make_fake_json.sh
@@ -1,10 +1,17 @@
#!/bin/bash
#
+python ../apps/manage.py shell << EOF
+from users.models import *
+generate_fake()
+from assets.models import *
+generate_fake()
+EOF
+
python ../apps/manage.py dbshell << EOF
delete from django_content_type;
delete from auth_permission;
EOF
-python ../apps/manage.py dumpdata > ../apps/fixtures/init.json
+python ../apps/manage.py dumpdata > ../apps/fixtures/fake.json