Adjustments for initial public launch of OpenCloud
diff --git a/planetstack/core/admin.py b/planetstack/core/admin.py
index 988a766..d229a17 100644
--- a/planetstack/core/admin.py
+++ b/planetstack/core/admin.py
@@ -12,11 +12,55 @@
from django.contrib.auth.signals import user_logged_in
from django.utils import timezone
from django.contrib.contenttypes import generic
-from django.core.urlresolvers import reverse
from suit.widgets import LinkedSelect
+from django.core.exceptions import PermissionDenied
+from django.core.urlresolvers import reverse
import django_evolution
+class ReadOnlyAwareAdmin(admin.ModelAdmin):
+
+ def has_add_permission(self, request, obj=None):
+ return (not self.__user_is_readonly(request))
+
+ def has_delete_permission(self, request, obj=None):
+ return (not self.__user_is_readonly(request))
+
+ def save_model(self, request, obj, form, change):
+ if self.__user_is_readonly(request):
+ raise PermissionDenied
+ #pass
+ else:
+ return super(ReadOnlyAwareAdmin, self).save_model(request, obj, form, change)
+
+ def get_actions(self,request):
+ actions = super(ReadOnlyAwareAdmin,self).get_actions(request)
+
+ if self.__user_is_readonly(request):
+ if 'delete_selected' in actions:
+ del actions['delete_selected']
+
+ return actions
+
+ def change_view(self,request,object_id, extra_context=None):
+
+ if self.__user_is_readonly(request):
+ self.readonly_fields=self.user_readonly_fields
+ self.inlines = self.user_readonly_inlines
+
+ try:
+ return super(ReadOnlyAwareAdmin, self).change_view(request, object_id, extra_context=extra_context)
+ except PermissionDenied:
+ pass
+ if request.method == 'POST':
+ raise PermissionDenied
+ request.readonly = True
+ return super(ReadOnlyAwareAdmin, self).change_view(request, object_id, extra_context=extra_context)
+
+
+ def __user_is_readonly(self, request):
+ return request.user.isReadOnlyUser()
+
class SingletonAdmin (admin.ModelAdmin):
def has_add_permission(self, request):
num_objects = self.model.objects.count()
@@ -29,28 +73,40 @@
class PlStackTabularInline(admin.TabularInline):
pass
+class ReadOnlyTabularInline(PlStackTabularInline):
+ can_delete = False
+
+ def get_readonly_fields(self, request, obj=None):
+ return self.fields
+
+ def has_add_permission(self, request):
+ return False
+
+class ReservationROInline(ReadOnlyTabularInline):
+ model = Reservation
+ extra = 0
+ suit_classes = 'suit-tab suit-tab-reservations'
+ fields = ['startTime','slice','duration']
+
class ReservationInline(PlStackTabularInline):
model = Reservation
extra = 0
suit_classes = 'suit-tab suit-tab-reservations'
-
-class ReadonlyTabularInline(PlStackTabularInline):
- can_delete = False
+class TagROInline(generic.GenericTabularInline):
+ model = Tag
extra = 0
- editable_fields = []
+ suit_classes = 'suit-tab suit-tab-tags'
+ can_delete = False
+ fields = ['service', 'name', 'value']
def get_readonly_fields(self, request, obj=None):
- fields = []
- for field in self.model._meta.get_all_field_names():
- if (not field == 'id'):
- if (field not in self.editable_fields):
- fields.append(field)
- return fields
+ return self.fields
def has_add_permission(self, request):
return False
+
class TagInline(generic.GenericTabularInline):
model = Tag
extra = 0
@@ -76,6 +132,11 @@
def __str__(self):
return self.network_name
+class SliverROInline(ReadOnlyTabularInline):
+ model = Sliver
+ fields = ['ip', 'instance_name', 'slice', 'numberCores', 'image', 'node', 'deploymentNetwork']
+ suit_classes = 'suit-tab suit-tab-slivers'
+
class SliverInline(PlStackTabularInline):
model = Sliver
fields = ['ip', 'instance_name', 'slice', 'numberCores', 'image', 'node', 'deploymentNetwork']
@@ -116,44 +177,69 @@
+class SiteROInline(ReadOnlyTabularInline):
+ model = Site
+ extra = 0
+ fields = ['name', 'login_base', 'site_url', 'enabled']
+ suit_classes = 'suit-tab suit-tab-sites'
+
class SiteInline(PlStackTabularInline):
model = Site
extra = 0
suit_classes = 'suit-tab suit-tab-sites'
+class UserROInline(ReadOnlyTabularInline):
+ model = User
+ fields = ['email', 'firstname', 'lastname']
+ extra = 0
+ suit_classes = 'suit-tab suit-tab-users'
+
class UserInline(PlStackTabularInline):
model = User
fields = ['email', 'firstname', 'lastname']
extra = 0
suit_classes = 'suit-tab suit-tab-users'
+class SliceROInline(ReadOnlyTabularInline):
+ model = Slice
+ suit_classes = 'suit-tab suit-tab-slices'
+ fields = ['name','site', 'serviceClass', 'service']
+
class SliceInline(PlStackTabularInline):
model = Slice
fields = ['name','site', 'serviceClass', 'service']
extra = 0
suit_classes = 'suit-tab suit-tab-slices'
-
-class RoleInline(PlStackTabularInline):
- model = Role
- extra = 0
- suit_classes = 'suit-tab suit-tab-roles'
+class NodeROInline(ReadOnlyTabularInline):
+ model = Node
+ extra = 0
+ suit_classes = 'suit-tab suit-tab-nodes'
+ fields = ['name','deployment']
class NodeInline(PlStackTabularInline):
model = Node
extra = 0
suit_classes = 'suit-tab suit-tab-nodes'
-class SlicePrivilegeInline(PlStackTabularInline):
- model = SlicePrivilege
+class DeploymentPrivilegeROInline(ReadOnlyTabularInline):
+ model = DeploymentPrivilege
extra = 0
- suit_classes = 'suit-tab suit-tab-sliceprivileges'
+ suit_classes = 'suit-tab suit-tab-deploymentprivileges'
+ fields = ['user','role']
class DeploymentPrivilegeInline(PlStackTabularInline):
model = DeploymentPrivilege
extra = 0
suit_classes = 'suit-tab suit-tab-deploymentprivileges'
+#CLEANUP DOUBLE SitePrivilegeInline
+class SitePrivilegeROInline(ReadOnlyTabularInline):
+ model = SitePrivilege
+ extra = 0
+ suit_classes = 'suit-tab suit-tab-siteprivileges'
+ fields = ['user','site', 'role']
+
class SitePrivilegeInline(PlStackTabularInline):
model = SitePrivilege
extra = 0
@@ -187,6 +273,12 @@
extra = 0
fields = ('user', 'site','role')
+class SlicePrivilegeROInline(ReadOnlyTabularInline):
+ model = SlicePrivilege
+ extra = 0
+ suit_classes = 'suit-tab suit-tab-sliceprivileges'
+ fields = ['user', 'slice', 'role']
+
class SlicePrivilegeInline(PlStackTabularInline):
model = SlicePrivilege
suit_classes = 'suit-tab suit-tab-sliceprivileges'
@@ -215,6 +307,14 @@
return super(SlicePrivilegeInline, self).formfield_for_foreignkey(db_field, request, **kwargs)
+class SliceNetworkROInline(ReadOnlyTabularInline):
+ model = Network.slices.through
+ extra = 0
+ verbose_name = "Network Connection"
+ verbose_name_plural = "Network Connections"
+ suit_classes = 'suit-tab suit-tab-slicenetworks'
+ fields = ['network']
+
class SliceNetworkInline(PlStackTabularInline):
model = Network.slices.through
extra = 0
@@ -222,10 +322,6 @@
verbose_name_plural = "Network Connections"
suit_classes = 'suit-tab suit-tab-slicenetworks'
-class SliceTagInline(PlStackTabularInline):
- model = SliceTag
- extra = 0
-
class PlainTextWidget(forms.HiddenInput):
input_type = 'hidden'
@@ -234,7 +330,7 @@
value = ''
return mark_safe(str(value) + super(PlainTextWidget, self).render(name, value, attrs))
-class PlanetStackBaseAdmin(admin.ModelAdmin):
+class PlanetStackBaseAdmin(ReadOnlyAwareAdmin):
save_on_top = False
class SliceRoleAdmin(PlanetStackBaseAdmin):
@@ -256,13 +352,28 @@
class Meta:
model = Deployment
+class SiteAssocInline(PlStackTabularInline):
+ model = Site.deployments.through
+ extra = 0
+ suit_classes = 'suit-tab suit-tab-sites'
class DeploymentAdmin(PlanetStackBaseAdmin):
form = DeploymentAdminForm
+ model = Deployment
+ fieldList = ['name','sites']
+ fieldsets = [(None, {'fields': fieldList, 'classes':['suit-tab suit-tab-sites']})]
inlines = [DeploymentPrivilegeInline,NodeInline,TagInline]
- fieldsets = [
- (None, {'fields': ['sites'], 'classes':['suit-tab suit-tab-sites']}),]
- suit_form_tabs =(('sites', 'Sites'),('nodes','Nodes'),('deploymentprivileges','Privileges'),('tags','Tags'))
+
+ user_readonly_inlines = [DeploymentPrivilegeROInline,NodeROInline,TagROInline]
+ user_readonly_fields = ['name']
+
+ suit_form_tabs =(('sites','Deployment Details'),('nodes','Nodes'),('deploymentprivileges','Privileges'),('tags','Tags'))
+
+class ServiceAttrAsTabROInline(ReadOnlyTabularInline):
+ model = ServiceAttribute
+ fields = ['name','value']
+ extra = 0
+ suit_classes = 'suit-tab suit-tab-serviceattrs'
class ServiceAttrAsTabInline(PlStackTabularInline):
model = ServiceAttribute
@@ -270,19 +381,24 @@
extra = 0
suit_classes = 'suit-tab suit-tab-serviceattrs'
-class ServiceAttributeInline(PlStackTabularInline):
- model = ServiceAttribute
- fields = ['name','value']
- extra = 0
-
class ServiceAdmin(PlanetStackBaseAdmin):
- list_display = ("name","enabled")
- fieldsets = [(None, {'fields': ['name','enabled','description']})]
- inlines = [ServiceAttributeInline,]
+ list_display = ("name","description","versionNumber","enabled","published")
+ fieldList = ["name","description","versionNumber","enabled","published"]
+ fieldsets = [(None, {'fields': fieldList, 'classes':['suit-tab suit-tab-general']})]
+ inlines = [ServiceAttrAsTabInline,SliceInline]
+
+ user_readonly_fields = fieldList
+ user_readonly_inlines = [ServiceAttrAsTabROInline,SliceROInline]
+
+ suit_form_tabs =(('general', 'Service Details'),
+ ('slices','Slices'),
+ ('serviceattrs','Additional Attributes'),
+ )
class SiteAdmin(PlanetStackBaseAdmin):
+ fieldList = ['name', 'site_url', 'enabled', 'is_public', 'login_base', 'accountLink','location']
fieldsets = [
- (None, {'fields': ['name', 'site_url', 'enabled', 'is_public', 'login_base', 'accountLink', 'location'], 'classes':['suit-tab suit-tab-general']}),
+ (None, {'fields': fieldList, 'classes':['suit-tab suit-tab-general']}),
('Deployment Networks', {'fields': ['deployments'], 'classes':['suit-tab suit-tab-deployments']}),
]
suit_form_tabs =(('general', 'Site Details'),
@@ -290,10 +406,14 @@
('siteprivileges','Privileges'),
('deployments','Deployments'),
('slices','Slices'),
- ('nodes','Nodes'),
+ ('nodes','Nodes'),
('tags','Tags'),
)
readonly_fields = ['accountLink']
+
+ user_readonly_fields = ['name', 'deployments','site_url', 'enabled', 'is_public', 'login_base', 'accountLink']
+ user_readonly_inlines = [SliceROInline,UserROInline,TagROInline, NodeROInline, SitePrivilegeROInline]
+
list_display = ('name', 'login_base','site_url', 'enabled')
filter_horizontal = ('deployments',)
inlines = [SliceInline,UserInline,TagInline, NodeInline, SitePrivilegeInline]
@@ -339,11 +459,15 @@
accountLink.allow_tags = True
accountLink.short_description = "Billing"
+
class SitePrivilegeAdmin(PlanetStackBaseAdmin):
+ fieldList = ['user', 'site', 'role']
fieldsets = [
- (None, {'fields': ['user', 'site', 'role'], 'classes':['collapse']})
+ (None, {'fields': fieldList, 'classes':['collapse']})
]
list_display = ('user', 'site', 'role')
+ user_readonly_fields = fieldList
+ user_readonly_inlines = []
def formfield_for_foreignkey(self, db_field, request, **kwargs):
if db_field.name == 'site':
@@ -389,12 +513,14 @@
class SliceAdmin(PlanetStackBaseAdmin):
form = SliceForm
- fieldsets = [('Slice Details', {'fields': ['name', 'site', 'serviceClass', 'enabled','description', 'service', 'slice_url'], 'classes':['suit-tab suit-tab-general']}),]
+ fieldList = ['name', 'site', 'serviceClass', 'enabled','description', 'service', 'slice_url']
+ fieldsets = [('Slice Details', {'fields': fieldList, 'classes':['suit-tab suit-tab-general']}),]
list_display = ('name', 'site','serviceClass', 'slice_url')
inlines = [SlicePrivilegeInline,SliverInline, TagInline, ReservationInline,SliceNetworkInline]
+ user_readonly_fields = fieldList
+ user_readonly_inlines = [SlicePrivilegeROInline,SliverROInline,TagROInline, ReservationROInline, SliceNetworkROInline]
- #inlines = [SliverInline, SliceMembershipInline, TagInline, SliceTagInline, SliceNetworkInline]
suit_form_tabs =(('general', 'Slice Details'),
('slicenetworks','Networks'),
('sliceprivileges','Privileges'),
@@ -442,17 +568,15 @@
# users can only see slices at their site
return qs.filter(site=request.user.site)
- def save_model(self, request, obj, form, change):
- # update openstack connection to use this site/tenant
- obj.caller = request.user
- obj.save()
-
class SlicePrivilegeAdmin(PlanetStackBaseAdmin):
fieldsets = [
(None, {'fields': ['user', 'slice', 'role']})
]
list_display = ('user', 'slice', 'role')
+ user_readonly_fields = ['user', 'slice', 'role']
+ user_readonly_inlines = []
+
def formfield_for_foreignkey(self, db_field, request, **kwargs):
if db_field.name == 'slice':
if not request.user.is_admin:
@@ -514,7 +638,10 @@
suit_form_tabs =(('general','Image Details'),('slivers','Slivers'))
inlines = [SliverInline]
-
+
+ user_readonly_fields = ['image_id', 'name', 'disk_format', 'container_format']
+ user_readonly_inlines = [SliverROInline]
+
class NodeForm(forms.ModelForm):
class Meta:
widgets = {
@@ -522,13 +649,17 @@
'deployment': LinkedSelect
}
-class NodeAdmin(admin.ModelAdmin):
+class NodeAdmin(PlanetStackBaseAdmin):
form = NodeForm
list_display = ('name', 'site', 'deployment')
list_filter = ('deployment',)
+
inlines = [TagInline,SliverInline]
fieldsets = [('Node Details', {'fields': ['name','site','deployment'], 'classes':['suit-tab suit-tab-details']})]
+ user_readonly_fields = ['name','site','deployment']
+ user_readonly_inlines = [TagInline,SliverInline]
+
suit_form_tabs =(('details','Node Details'),('slivers','Slivers'),('tags','Tags'))
@@ -546,8 +677,10 @@
'image': LinkedSelect
}
-class TagAdmin(admin.ModelAdmin):
+class TagAdmin(PlanetStackBaseAdmin):
list_display = ['service', 'name', 'value', 'content_type', 'content_object',]
+ user_readonly_fields = ['service', 'name', 'value', 'content_type', 'content_object',]
+ user_readonly_inlines = []
class SliverAdmin(PlanetStackBaseAdmin):
form = SliverForm
@@ -562,6 +695,9 @@
inlines = [TagInline]
+ user_readonly_fields = ['slice', 'deploymentNetwork', 'node', 'ip', 'instance_name', 'numberCores', 'image']
+ user_readonly_inlines = [TagROInline]
+
def formfield_for_foreignkey(self, db_field, request, **kwargs):
if db_field.name == 'slice':
if not request.user.is_admin:
@@ -602,20 +738,20 @@
inline.model.os_manager = OpenStackManager(auth=auth, caller=request.user)
yield inline.get_formset(request, obj)
- def save_model(self, request, obj, form, change):
- # update openstack connection to use this site/tenant
- auth = request.session.get('auth', {})
- auth['tenant'] = obj.slice.name
- obj.os_manager = OpenStackManager(auth=auth, caller=request.user)
- obj.creator = request.user
- obj.save()
+ #def save_model(self, request, obj, form, change):
+ # # update openstack connection to use this site/tenant
+ # auth = request.session.get('auth', {})
+ # auth['tenant'] = obj.slice.name
+ # obj.os_manager = OpenStackManager(auth=auth, caller=request.user)
+ # obj.creator = request.user
+ # obj.save()
- def delete_model(self, request, obj):
- # update openstack connection to use this site/tenant
- auth = request.session.get('auth', {})
- auth['tenant'] = obj.slice.name
- obj.os_manager = OpenStackManager(auth=auth, caller=request.user)
- obj.delete()
+ #def delete_model(self, request, obj):
+ # # update openstack connection to use this site/tenant
+ # auth = request.session.get('auth', {})
+ # auth['tenant'] = obj.slice.name
+ # obj.os_manager = OpenStackManager(auth=auth, caller=request.user)
+ # obj.delete()
class UserCreationForm(forms.ModelForm):
"""A form for creating new users. Includes all the required
@@ -673,25 +809,32 @@
# The fields to be used in displaying the User model.
# These override the definitions on the base UserAdmin
# that reference specific fields on auth.User.
- list_display = ('email', 'firstname', 'lastname', 'is_admin', 'last_login')
+ list_display = ('email', 'firstname', 'lastname', 'site', 'last_login')
#list_display = ('email', 'username','firstname', 'lastname', 'is_admin', 'last_login')
- list_filter = ()
+ list_filter = ('site',)
inlines = [SlicePrivilegeInline,SitePrivilegeInline,DeploymentPrivilegeInline]
+
+ fieldListLoginDetails = ['email','site','password','is_readonly','is_amin','public_key']
+ fieldListContactInfo = ['firstname','lastname','phone','timezone']
+
fieldsets = (
- ('Login Details', {'fields': ('email', 'site','password', 'is_admin', 'public_key'), 'classes':['suit-tab suit-tab-general']}),
+ ('Login Details', {'fields': ['email', 'site','password', 'is_readonly', 'is_admin', 'public_key'], 'classes':['suit-tab suit-tab-general']}),
('Contact Information', {'fields': ('firstname','lastname','phone', 'timezone'), 'classes':['suit-tab suit-tab-contact']}),
#('Important dates', {'fields': ('last_login',)}),
)
add_fieldsets = (
(None, {
'classes': ('wide',),
- 'fields': ('email', 'firstname', 'lastname', 'phone', 'public_key','password1', 'password2')}
+ 'fields': ('email', 'firstname', 'lastname', 'is_readonly', 'phone', 'public_key','password1', 'password2')}
),
)
search_fields = ('email',)
ordering = ('email',)
filter_horizontal = ()
+ user_readonly_fields = fieldListLoginDetails
+ user_readonly_inlines = [SlicePrivilegeROInline,SitePrivilegeROInline,DeploymentPrivilegeROInline]
+
suit_form_tabs =(('general','Login Details'),('contact','Contact Information'),('sliceprivileges','Slice Privileges'),('siteprivileges','Site Privileges'),('deploymentprivileges','Deployment Privileges'))
def formfield_for_foreignkey(self, db_field, request, **kwargs):
@@ -706,14 +849,64 @@
return super(UserAdmin, self).formfield_for_foreignkey(db_field, request, **kwargs)
+ def has_add_permission(self, request, obj=None):
+ return (not self.__user_is_readonly(request))
+
+ def has_delete_permission(self, request, obj=None):
+ return (not self.__user_is_readonly(request))
+
+ def get_actions(self,request):
+ actions = super(UserAdmin,self).get_actions(request)
+
+ if self.__user_is_readonly(request):
+ if 'delete_selected' in actions:
+ del actions['delete_selected']
+
+ return actions
+
+ def change_view(self,request,object_id, extra_context=None):
+
+ if self.__user_is_readonly(request):
+ self.readonly_fields=self.user_readonly_fields
+ self.inlines = self.user_readonly_inlines
+ try:
+ return super(UserAdmin, self).change_view(request, object_id, extra_context=extra_context)
+ except PermissionDenied:
+ pass
+ if request.method == 'POST':
+ raise PermissionDenied
+ request.readonly = True
+ return super(UserAdmin, self).change_view(request, object_id, extra_context=extra_context)
+
+ def __user_is_readonly(self, request):
+ #groups = [x.name for x in request.user.groups.all() ]
+ #return "readonly" in groups
+ return request.user.isReadOnlyUser()
+
+
+
+class ServiceResourceROInline(ReadOnlyTabularInline):
+ model = ServiceResource
+ extra = 0
+ fields = ['serviceClass', 'name', 'maxUnitsDeployment', 'maxUnitsNode', 'maxDuration', 'bucketInRate', 'bucketMaxSize', 'cost', 'calendarReservable']
+
class ServiceResourceInline(admin.TabularInline):
model = ServiceResource
extra = 0
-class ServiceClassAdmin(admin.ModelAdmin):
+class ServiceClassAdmin(PlanetStackBaseAdmin):
list_display = ('name', 'commitment', 'membershipFee')
inlines = [ServiceResourceInline]
+ user_readonly_fields = ['name', 'commitment', 'membershipFee']
+ user_readonly_inlines = []
+
+class ReservedResourceROInline(ReadOnlyTabularInline):
+ model = ReservedResource
+ extra = 0
+ fields = ['sliver', 'resource','quantity','reservationSet']
+ suit_classes = 'suit-tab suit-tab-reservedresources'
+
class ReservedResourceInline(admin.TabularInline):
model = ReservedResource
extra = 0
@@ -790,14 +983,17 @@
def is_valid(self):
return False
-class ReservationAdmin(admin.ModelAdmin):
- fieldsets = [('Reservation Details', {'fields': ['slice', 'startTime', 'duration'], 'classes': ['suit-tab suit-tab-general']})]
+class ReservationAdmin(PlanetStackBaseAdmin):
+ fieldList = ['slice', 'startTime', 'duration']
+ fieldsets = [('Reservation Details', {'fields': fieldList, 'classes': ['suit-tab suit-tab-general']})]
list_display = ('startTime', 'duration')
form = ReservationAddForm
suit_form_tabs = (('general','Reservation Details'), ('reservedresources','Reserved Resources'))
inlines = [ReservedResourceInline]
+ user_readonly_inlines = [ReservedResourceROInline]
+ user_readonly_fields = fieldList
def add_view(self, request, form_url='', extra_context=None):
timezone.activate(request.user.timezone)
@@ -845,11 +1041,24 @@
else:
return []
-class NetworkParameterTypeAdmin(admin.ModelAdmin):
+class NetworkParameterTypeAdmin(PlanetStackBaseAdmin):
list_display = ("name", )
+ user_readonly_fields = ['name']
+ user_readonly_inlines = []
-class RouterAdmin(admin.ModelAdmin):
+class RouterAdmin(PlanetStackBaseAdmin):
list_display = ("name", )
+ user_readonly_fields = ['name']
+ user_readonly_inlines = []
+
+class RouterROInline(ReadOnlyTabularInline):
+ model = Router.networks.through
+ extra = 0
+ verbose_name_plural = "Routers"
+ verbose_name = "Router"
+ suit_classes = 'suit-tab suit-tab-routers'
+
+ fields = ['name', 'owner', 'permittedNetworks', 'networks']
class RouterInline(admin.TabularInline):
model = Router.networks.through
@@ -858,6 +1067,14 @@
verbose_name = "Router"
suit_classes = 'suit-tab suit-tab-routers'
+class NetworkParameterROInline(ReadOnlyTabularInline):
+ model = NetworkParameter
+ extra = 1
+ verbose_name_plural = "Parameters"
+ verbose_name = "Parameter"
+ suit_classes = 'suit-tab suit-tab-netparams'
+ fields = ['parameter', 'value', 'content_type', 'object_id', 'content_object']
+
class NetworkParameterInline(generic.GenericTabularInline):
model = NetworkParameter
extra = 1
@@ -865,6 +1082,14 @@
verbose_name = "Parameter"
suit_classes = 'suit-tab suit-tab-netparams'
+class NetworkSliversROInline(ReadOnlyTabularInline):
+ fields = ['network', 'sliver', 'ip', 'port_id']
+ model = NetworkSliver
+ extra = 0
+ verbose_name_plural = "Slivers"
+ verbose_name = "Sliver"
+ suit_classes = 'suit-tab suit-tab-networkslivers'
+
class NetworkSliversInline(admin.TabularInline):
readonly_fields = ("ip", )
model = NetworkSliver
@@ -873,6 +1098,14 @@
verbose_name = "Sliver"
suit_classes = 'suit-tab suit-tab-networkslivers'
+class NetworkSlicesROInline(ReadOnlyTabularInline):
+ model = NetworkSlice
+ extra = 0
+ verbose_name_plural = "Slices"
+ verbose_name = "Slice"
+ suit_classes = 'suit-tab suit-tab-networkslices'
+ fields = ['network','slice']
+
class NetworkSlicesInline(admin.TabularInline):
model = NetworkSlice
extra = 0
@@ -880,23 +1113,17 @@
verbose_name = "Slice"
suit_classes = 'suit-tab suit-tab-networkslices'
-class NetworkForm(forms.ModelForm):
- class Meta:
- widgets = {
- 'deployment': LinkedSelect,
- 'site': LinkedSelect,
- }
-
-class NetworkAdmin(admin.ModelAdmin):
- form = NetworkForm
+class NetworkAdmin(PlanetStackBaseAdmin):
list_display = ("name", "subnet", "ports", "labels")
- list_filter = ('deployment', )
readonly_fields = ("subnet", )
inlines = [NetworkParameterInline, NetworkSliversInline, NetworkSlicesInline, RouterInline]
fieldsets = [
- (None, {'fields': ['name','template','ports','labels','owner','guaranteedBandwidth', 'permitAllSlices','permittedSlices','site','deployment','network_id','router_id','subnet_id','subnet'], 'classes':['suit-tab suit-tab-general']}),]
+ (None, {'fields': ['name','template','ports','labels','owner','guaranteedBandwidth', 'permitAllSlices','permittedSlices','network_id','router_id','subnet_id','subnet'], 'classes':['suit-tab suit-tab-general']}),]
+
+ user_readonly_fields = ['name','template','ports','labels','owner','guaranteedBandwidth', 'permitAllSlices','permittedSlices','network_id','router_id','subnet_id','subnet']
+ user_readonly_inlines = [NetworkParameterROInline, NetworkSliversROInline, NetworkSlicesROInline, RouterROInline]
suit_form_tabs =(
('general','Network Details'),
@@ -905,8 +1132,10 @@
('networkslices','Slices'),
('routers','Routers'),
)
-class NetworkTemplateAdmin(admin.ModelAdmin):
+class NetworkTemplateAdmin(PlanetStackBaseAdmin):
list_display = ("name", "guaranteedBandwidth", "visibility")
+ user_readonly_fields = ["name", "guaranteedBandwidth", "visibility"]
+ user_readonly_inlines = []
# register a signal that caches the user's credentials when they log in
def cache_credentials(sender, user, request, **kwds):
@@ -942,7 +1171,7 @@
extra = 0
verbose_name_plural = "Charges"
verbose_name = "Charge"
- exclude = ['enacted', 'account']
+ exclude = ['account']
fields = ["date", "kind", "state", "object", "coreHours", "dollar_amount", "slice"]
readonly_fields = ["date", "kind", "state", "object", "coreHours", "dollar_amount", "slice"]
can_delete = False
@@ -965,7 +1194,6 @@
extra = 0
verbose_name_plural = "Invoices"
verbose_name = "Invoice"
- exclude = ['enacted']
fields = ["date", "dollar_amount", "invoiceLink"]
readonly_fields = ["date", "dollar_amount", "invoiceLink"]
suit_classes = 'suit-tab suit-tab-accountinvoice'
@@ -986,7 +1214,7 @@
extra = 0
verbose_name_plural = "Charges"
verbose_name = "Charge"
- exclude = ['enacted', "invoice"]
+ exclude = ["invoice"]
fields = ["date", "kind", "state", "object", "coreHours", "dollar_amount", "slice"]
readonly_fields = ["date", "kind", "state", "object", "coreHours", "dollar_amount", "slice"]
suit_classes = 'suit-tab suit-tab-accountpendingcharges'
@@ -1005,7 +1233,6 @@
extra = 1
verbose_name_plural = "Payments"
verbose_name = "Payment"
- exclude = ['enacted']
fields = ["date", "dollar_amount"]
readonly_fields = ["date", "dollar_amount"]
suit_classes = 'suit-tab suit-tab-accountpayments'
@@ -1014,14 +1241,13 @@
dollar_amount = right_dollar_field("amount", "Amount")
-
class AccountAdmin(admin.ModelAdmin):
list_display = ("site", "balance_due")
inlines = [InvoiceInline, PaymentInline, PendingChargeInline]
fieldsets = [
- (None, {'fields': ['site', 'dollar_balance_due', 'dollar_total_invoices', 'dollar_total_payments']})] # ,'classes':['suit-tab suit-tab-general']}),]
+ (None, {'fields': ['site', 'dollar_balance_due', 'dollar_total_invoices', 'dollar_total_payments'],'classes':['suit-tab suit-tab-general']}),]
readonly_fields = ['site', 'dollar_balance_due', 'dollar_total_invoices', 'dollar_total_payments']
@@ -1045,29 +1271,28 @@
#Do not show django evolution in the admin interface
from django_evolution.models import Version, Evolution
-admin.site.unregister(Version)
-admin.site.unregister(Evolution)
+#admin.site.unregister(Version)
+#admin.site.unregister(Evolution)
# When debugging it is often easier to see all the classes, but for regular use
# only the top-levels should be displayed
-showAll = True
-
-admin.site.register(Account, AccountAdmin)
-admin.site.register(Invoice, InvoiceAdmin)
+showAll = False
admin.site.register(Deployment, DeploymentAdmin)
admin.site.register(Site, SiteAdmin)
admin.site.register(Slice, SliceAdmin)
-admin.site.register(ServiceClass, ServiceClassAdmin)
admin.site.register(Service, ServiceAdmin)
admin.site.register(Reservation, ReservationAdmin)
admin.site.register(Network, NetworkAdmin)
admin.site.register(Router, RouterAdmin)
-admin.site.register(NetworkParameterType, NetworkParameterTypeAdmin)
admin.site.register(NetworkTemplate, NetworkTemplateAdmin)
+admin.site.register(Account, AccountAdmin)
+admin.site.register(Invoice, InvoiceAdmin)
-if showAll:
+if True:
+ admin.site.register(NetworkParameterType, NetworkParameterTypeAdmin)
+ admin.site.register(ServiceClass, ServiceClassAdmin)
#admin.site.register(PlanetStack)
admin.site.register(Tag, TagAdmin)
admin.site.register(DeploymentRole)
diff --git a/planetstack/core/fixtures/initial_data.json b/planetstack/core/fixtures/initial_data.json
index ad7d477..6650547 100644
--- a/planetstack/core/fixtures/initial_data.json
+++ b/planetstack/core/fixtures/initial_data.json
@@ -39,32 +39,6 @@
}
},
{
- "pk": 6,
- "model": "core.service",
- "fields": {
- "updated": "2013-12-12T00:00:42.038Z",
- "description": "HPC Service",
- "created": "2013-12-12T00:00:42.038Z",
- "enabled": true,
- "versionNumber": "2.8",
- "published": true,
- "name": "coblitz"
- }
-},
-{
- "pk": 7,
- "model": "core.service",
- "fields": {
- "updated": "2013-12-12T00:04:22.009Z",
- "description": "Request Router Service",
- "created": "2013-12-12T00:04:03.740Z",
- "enabled": true,
- "versionNumber": "2.8",
- "published": true,
- "name": "Request Router"
- }
-},
-{
"pk": 8,
"model": "core.service",
"fields": {
@@ -81,14 +55,14 @@
"pk": 8,
"model": "core.site",
"fields": {
- "updated": "2013-12-05T01:40:10.294Z",
+ "updated": "2013-12-17T18:00:47.910Z",
"name": "Stanford",
"created": "2013-04-03T23:14:11.072Z",
"tenant_id": "",
"enabled": true,
"longitude": null,
"site_url": "http://www.stanford.edu/",
- "login_base": "usstanford",
+ "login_base": "stanford",
"location": "37.4294,-122.17200000000003",
"latitude": null,
"is_public": true,
@@ -102,14 +76,14 @@
"pk": 9,
"model": "core.site",
"fields": {
- "updated": "2013-12-05T01:39:55.076Z",
+ "updated": "2013-12-17T18:00:38.431Z",
"name": "Washington",
"created": "2013-04-03T23:14:11.072Z",
"tenant_id": "",
"enabled": true,
"longitude": null,
"site_url": "https://www.washington.edu/",
- "login_base": "uswash",
+ "login_base": "wash",
"location": "47.6531,-122.31299999999999",
"latitude": null,
"is_public": true,
@@ -123,14 +97,14 @@
"pk": 10,
"model": "core.site",
"fields": {
- "updated": "2013-12-05T01:39:17.419Z",
+ "updated": "2013-12-17T18:00:28.495Z",
"name": "Princeton",
"created": "2013-04-03T23:14:11.072Z",
"tenant_id": "",
"enabled": true,
"longitude": null,
"site_url": "http://princeton.edu/",
- "login_base": "usprinceton",
+ "login_base": "princeton",
"location": "40.3502,-74.6524",
"latitude": null,
"is_public": true,
@@ -144,14 +118,14 @@
"pk": 11,
"model": "core.site",
"fields": {
- "updated": "2013-12-05T01:40:36.873Z",
+ "updated": "2013-12-17T18:00:18.964Z",
"name": "GeorgiaTech",
"created": "2013-04-03T23:14:11.072Z",
"tenant_id": "",
"enabled": true,
"longitude": null,
"site_url": "http://www.gatech.edu/",
- "login_base": "usgt",
+ "login_base": "gt",
"location": "33.7772,-84.39760000000001",
"latitude": null,
"is_public": true,
@@ -165,14 +139,14 @@
"pk": 12,
"model": "core.site",
"fields": {
- "updated": "2013-12-05T01:40:52.585Z",
+ "updated": "2013-12-17T18:00:07.704Z",
"name": "MaxPlanck",
"created": "2013-04-03T23:14:11.072Z",
"tenant_id": "",
"enabled": true,
"longitude": null,
"site_url": "http://www.mpi-sws.mpg.de/",
- "login_base": "eumpisws",
+ "login_base": "mpisws",
"location": "49.14,6.588999999999942",
"latitude": null,
"is_public": true,
@@ -375,15 +349,15 @@
"pk": 22,
"model": "core.site",
"fields": {
- "updated": "2013-12-16T23:46:40.131Z",
+ "updated": "2013-12-17T17:30:14.491Z",
"name": "ON.Lab",
"created": "2013-04-03T23:14:11.072Z",
"tenant_id": "",
"enabled": true,
"longitude": null,
- "site_url": "http://www.internet2.edu/",
+ "site_url": "http://www.onlab.us/",
"login_base": "onlab",
- "location": "37.452955,-122.181766",
+ "location": "37.452955,-122.18176599999998",
"latitude": null,
"is_public": true,
"deployments": [
@@ -398,6 +372,55 @@
}
},
{
+ "pk": 23,
+ "model": "core.site",
+ "fields": {
+ "updated": "2013-12-17T18:21:43.870Z",
+ "name": "I2 Singapore",
+ "created": "2013-12-17T17:08:49.669Z",
+ "tenant_id": null,
+ "enabled": true,
+ "longitude": null,
+ "site_url": "http://www.internet2.edu/",
+ "login_base": "i2singapore",
+ "location": "1.33544,103.88999999999999",
+ "latitude": null,
+ "is_public": true,
+ "deployments": [
+ 10
+ ],
+ "abbreviated_name": ""
+ }
+},
+{
+ "pk": 24,
+ "model": "core.site",
+ "fields": {
+ "updated": "2013-12-17T18:08:01.373Z",
+ "name": "Arizona",
+ "created": "2013-12-17T18:07:14.190Z",
+ "tenant_id": null,
+ "enabled": true,
+ "longitude": null,
+ "site_url": "http://www.cs.arizona.edu/",
+ "login_base": "arizona",
+ "location": "32.2333,-110.94799999999998",
+ "latitude": null,
+ "is_public": true,
+ "deployments": [],
+ "abbreviated_name": ""
+ }
+},
+{
+ "pk": 1,
+ "model": "core.siterole",
+ "fields": {
+ "updated": "2013-12-17T18:08:54.842Z",
+ "role": "pi",
+ "created": "2013-12-17T18:08:54.842Z"
+ }
+},
+{
"pk": 5,
"model": "core.deployment",
"fields": {
@@ -452,15 +475,6 @@
}
},
{
- "pk": 11,
- "model": "core.deployment",
- "fields": {
- "updated": "2013-12-13T04:59:43.680Z",
- "name": "washington",
- "created": "2013-12-13T04:59:43.680Z"
- }
-},
-{
"pk": 1,
"model": "core.user",
"fields": {
@@ -477,7 +491,7 @@
"phone": null,
"kuser_id": null,
"is_staff": true,
- "last_login": "2013-12-13T05:21:52.645Z",
+ "last_login": "2013-12-18T18:31:06.731Z",
"timezone": "America/New_York",
"is_admin": true,
"password": "pbkdf2_sha256$10000$v5qKhIyhSQ2N$V8vh2mkqYdjQib6d2jBkpwV57eMBfhd/9eiXqaDLUWg=",
@@ -552,7 +566,7 @@
"phone": null,
"kuser_id": null,
"is_staff": true,
- "last_login": "2013-12-04T20:46:13.172Z",
+ "last_login": "2013-12-18T21:47:08.698Z",
"timezone": "America/New_York",
"is_admin": true,
"password": "pbkdf2_sha256$10000$dLKRXWJlkuvm$Ycamy79oT1lN0Q5R3B3nvlr70n2X50mL86yraDwzuWk=",
@@ -577,7 +591,7 @@
"phone": null,
"kuser_id": null,
"is_staff": true,
- "last_login": "2013-12-04T20:46:13.536Z",
+ "last_login": "2013-12-17T16:21:46.493Z",
"timezone": "America/New_York",
"is_admin": true,
"password": "pbkdf2_sha256$10000$dLKRXWJlkuvm$Ycamy79oT1lN0Q5R3B3nvlr70n2X50mL86yraDwzuWk=",
@@ -627,7 +641,7 @@
"phone": "",
"kuser_id": null,
"is_staff": true,
- "last_login": "2013-12-06T21:20:46.483Z",
+ "last_login": "2013-12-18T21:41:10.802Z",
"timezone": "America/New_York",
"is_admin": true,
"password": "pbkdf2_sha256$10000$dLKRXWJlkuvm$Ycamy79oT1lN0Q5R3B3nvlr70n2X50mL86yraDwzuWk=",
@@ -652,7 +666,7 @@
"phone": null,
"kuser_id": null,
"is_staff": true,
- "last_login": "2013-12-12T17:31:25.520Z",
+ "last_login": "2013-12-19T01:32:31.049Z",
"timezone": "America/New_York",
"is_admin": true,
"password": "pbkdf2_sha256$10000$dLKRXWJlkuvm$Ycamy79oT1lN0Q5R3B3nvlr70n2X50mL86yraDwzuWk=",
@@ -802,7 +816,7 @@
"phone": "",
"kuser_id": null,
"is_staff": true,
- "last_login": "2013-12-06T21:15:43.463Z",
+ "last_login": "2013-12-19T00:59:55.668Z",
"timezone": "America/New_York",
"is_admin": true,
"password": "pbkdf2_sha256$10000$jaLSTW2ksHEN$HDpjDKieFDjMvtV5wbF/ow3zfq8EqcFtNXLfuo+150s=",
@@ -811,6 +825,31 @@
}
},
{
+ "pk": 15,
+ "model": "core.user",
+ "fields": {
+ "username": "jhh@cs.arizona.edu",
+ "public_key": "",
+ "updated": "2013-12-17T18:08:58.288Z",
+ "is_readonly": false,
+ "firstname": "John",
+ "user_url": null,
+ "lastname": "Hartman",
+ "created": "2013-12-17T18:08:01.381Z",
+ "is_active": true,
+ "site": 24,
+ "phone": "",
+ "kuser_id": null,
+ "is_staff": true,
+ "last_login": "2013-12-17T18:08:01.356Z",
+ "timezone": "America/New_York",
+ "is_admin": true,
+ "password": "!",
+ "email": "jhh@cs.arizona.edu",
+ "enacted": null
+ }
+},
+{
"pk": 1,
"model": "core.serviceclass",
"fields": {
@@ -869,7 +908,7 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-05T01:41:11.410Z",
+ "updated": "2013-12-18T22:24:44.850Z",
"name": "HyperCache",
"service": 3,
"created": "2013-04-03T23:14:11.072Z",
@@ -890,7 +929,7 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-05T01:41:23.032Z",
+ "updated": "2013-12-19T00:14:36.783Z",
"name": "Syndicate",
"service": 5,
"created": "2013-04-03T23:14:11.072Z",
@@ -911,7 +950,7 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-12T18:11:27.780Z",
+ "updated": "2013-12-19T00:15:11.298Z",
"name": "DnsRedir",
"service": 4,
"created": "2013-12-04T22:48:35.584Z",
@@ -932,7 +971,7 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-12T18:12:41.375Z",
+ "updated": "2013-12-18T23:32:07.617Z",
"name": "DnsDemux",
"service": 4,
"created": "2013-12-04T22:49:23.051Z",
@@ -953,7 +992,7 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-09T14:19:28.458Z",
+ "updated": "2013-12-18T22:06:00.330Z",
"name": "Infrastructure",
"service": null,
"created": "2013-12-09T14:13:15.392Z",
@@ -974,7 +1013,7 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-13T21:51:36.922Z",
+ "updated": "2013-12-17T18:09:29.065Z",
"name": "Stork",
"service": 8,
"created": "2013-12-13T21:49:59.476Z",
@@ -982,7 +1021,7 @@
"tenant_id": "",
"serviceClass": 1,
"enabled": true,
- "site": 22,
+ "site": 24,
"omf_friendly": false,
"subnet_id": null,
"slice_url": "",
@@ -995,7 +1034,7 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-13T21:53:34.996Z",
+ "updated": "2013-12-17T18:09:20.587Z",
"name": "Owl",
"service": 8,
"created": "2013-12-13T21:52:15.590Z",
@@ -1003,7 +1042,7 @@
"tenant_id": "",
"serviceClass": 1,
"enabled": true,
- "site": 22,
+ "site": 24,
"omf_friendly": false,
"subnet_id": null,
"slice_url": "",
@@ -1016,7 +1055,7 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-13T21:59:36.718Z",
+ "updated": "2013-12-18T23:34:55.351Z",
"name": "Hadoop",
"service": null,
"created": "2013-12-13T21:54:20.895Z",
@@ -1037,8 +1076,8 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-13T21:58:44.338Z",
- "name": "test-slice-1",
+ "updated": "2013-12-18T22:21:36.462Z",
+ "name": "test",
"service": null,
"created": "2013-12-13T21:56:57.299Z",
"network_id": null,
@@ -1058,8 +1097,8 @@
"model": "core.slice",
"fields": {
"router_id": null,
- "updated": "2013-12-13T22:01:49.732Z",
- "name": "test-slice-2",
+ "updated": "2013-12-18T22:22:04.676Z",
+ "name": "test2",
"service": null,
"created": "2013-12-13T22:00:03.049Z",
"network_id": null,
@@ -1076,6 +1115,1674 @@
},
{
"pk": 1,
+ "model": "core.slicerole",
+ "fields": {
+ "updated": "2013-12-18T21:09:27.717Z",
+ "role": "admin",
+ "created": "2013-12-18T21:09:27.717Z"
+ }
+},
+{
+ "pk": 2,
+ "model": "core.slicerole",
+ "fields": {
+ "updated": "2013-12-18T21:09:35.074Z",
+ "role": "default",
+ "created": "2013-12-18T21:09:35.074Z"
+ }
+},
+{
+ "pk": 1,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.713Z",
+ "slice": 4,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:37.713Z"
+ }
+},
+{
+ "pk": 2,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.729Z",
+ "slice": 4,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:37.729Z"
+ }
+},
+{
+ "pk": 3,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.739Z",
+ "slice": 4,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:37.739Z"
+ }
+},
+{
+ "pk": 4,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.752Z",
+ "slice": 4,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:37.752Z"
+ }
+},
+{
+ "pk": 5,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.771Z",
+ "slice": 4,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:37.771Z"
+ }
+},
+{
+ "pk": 6,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.790Z",
+ "slice": 4,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:37.789Z"
+ }
+},
+{
+ "pk": 7,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.808Z",
+ "slice": 4,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:37.808Z"
+ }
+},
+{
+ "pk": 8,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.835Z",
+ "slice": 4,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:37.835Z"
+ }
+},
+{
+ "pk": 9,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.862Z",
+ "slice": 4,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:37.862Z"
+ }
+},
+{
+ "pk": 10,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.890Z",
+ "slice": 4,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:37.890Z"
+ }
+},
+{
+ "pk": 11,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.925Z",
+ "slice": 4,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:37.925Z"
+ }
+},
+{
+ "pk": 12,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.960Z",
+ "slice": 4,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:37.960Z"
+ }
+},
+{
+ "pk": 13,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:37.996Z",
+ "slice": 4,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:37.996Z"
+ }
+},
+{
+ "pk": 14,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.038Z",
+ "slice": 4,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:38.038Z"
+ }
+},
+{
+ "pk": 15,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.092Z",
+ "slice": 4,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:38.091Z"
+ }
+},
+{
+ "pk": 16,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.103Z",
+ "slice": 6,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:38.103Z"
+ }
+},
+{
+ "pk": 17,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.111Z",
+ "slice": 6,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:38.111Z"
+ }
+},
+{
+ "pk": 18,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.122Z",
+ "slice": 6,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:38.122Z"
+ }
+},
+{
+ "pk": 19,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.141Z",
+ "slice": 6,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:38.141Z"
+ }
+},
+{
+ "pk": 20,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.160Z",
+ "slice": 6,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:38.160Z"
+ }
+},
+{
+ "pk": 21,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.179Z",
+ "slice": 6,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:38.179Z"
+ }
+},
+{
+ "pk": 22,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.206Z",
+ "slice": 6,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:38.206Z"
+ }
+},
+{
+ "pk": 23,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.233Z",
+ "slice": 6,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:38.233Z"
+ }
+},
+{
+ "pk": 24,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.260Z",
+ "slice": 6,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:38.260Z"
+ }
+},
+{
+ "pk": 25,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.287Z",
+ "slice": 6,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:38.287Z"
+ }
+},
+{
+ "pk": 26,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.322Z",
+ "slice": 6,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:38.322Z"
+ }
+},
+{
+ "pk": 27,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.358Z",
+ "slice": 6,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:38.358Z"
+ }
+},
+{
+ "pk": 28,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.393Z",
+ "slice": 6,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:38.393Z"
+ }
+},
+{
+ "pk": 29,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.428Z",
+ "slice": 6,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:38.428Z"
+ }
+},
+{
+ "pk": 30,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.472Z",
+ "slice": 6,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:38.472Z"
+ }
+},
+{
+ "pk": 31,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.484Z",
+ "slice": 8,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:38.484Z"
+ }
+},
+{
+ "pk": 32,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.492Z",
+ "slice": 8,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:38.492Z"
+ }
+},
+{
+ "pk": 33,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.503Z",
+ "slice": 8,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:38.503Z"
+ }
+},
+{
+ "pk": 34,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.522Z",
+ "slice": 8,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:38.522Z"
+ }
+},
+{
+ "pk": 35,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.540Z",
+ "slice": 8,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:38.540Z"
+ }
+},
+{
+ "pk": 36,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.559Z",
+ "slice": 8,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:38.559Z"
+ }
+},
+{
+ "pk": 37,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.578Z",
+ "slice": 8,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:38.578Z"
+ }
+},
+{
+ "pk": 38,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.605Z",
+ "slice": 8,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:38.605Z"
+ }
+},
+{
+ "pk": 39,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.632Z",
+ "slice": 8,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:38.632Z"
+ }
+},
+{
+ "pk": 40,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.660Z",
+ "slice": 8,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:38.660Z"
+ }
+},
+{
+ "pk": 41,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.695Z",
+ "slice": 8,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:38.695Z"
+ }
+},
+{
+ "pk": 42,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.731Z",
+ "slice": 8,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:38.731Z"
+ }
+},
+{
+ "pk": 43,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.766Z",
+ "slice": 8,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:38.766Z"
+ }
+},
+{
+ "pk": 44,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.801Z",
+ "slice": 8,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:38.801Z"
+ }
+},
+{
+ "pk": 45,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.845Z",
+ "slice": 8,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:38.845Z"
+ }
+},
+{
+ "pk": 46,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.857Z",
+ "slice": 9,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:38.857Z"
+ }
+},
+{
+ "pk": 47,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.865Z",
+ "slice": 9,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:38.864Z"
+ }
+},
+{
+ "pk": 48,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.875Z",
+ "slice": 9,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:38.875Z"
+ }
+},
+{
+ "pk": 49,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.894Z",
+ "slice": 9,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:38.894Z"
+ }
+},
+{
+ "pk": 50,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.913Z",
+ "slice": 9,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:38.913Z"
+ }
+},
+{
+ "pk": 51,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.932Z",
+ "slice": 9,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:38.932Z"
+ }
+},
+{
+ "pk": 52,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.951Z",
+ "slice": 9,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:38.951Z"
+ }
+},
+{
+ "pk": 53,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:38.978Z",
+ "slice": 9,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:38.978Z"
+ }
+},
+{
+ "pk": 54,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.005Z",
+ "slice": 9,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:39.005Z"
+ }
+},
+{
+ "pk": 55,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.032Z",
+ "slice": 9,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:39.032Z"
+ }
+},
+{
+ "pk": 56,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.068Z",
+ "slice": 9,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:39.067Z"
+ }
+},
+{
+ "pk": 57,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.103Z",
+ "slice": 9,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:39.103Z"
+ }
+},
+{
+ "pk": 58,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.139Z",
+ "slice": 9,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:39.139Z"
+ }
+},
+{
+ "pk": 59,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.175Z",
+ "slice": 9,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:39.175Z"
+ }
+},
+{
+ "pk": 60,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.219Z",
+ "slice": 9,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:39.219Z"
+ }
+},
+{
+ "pk": 61,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.229Z",
+ "slice": 10,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:39.229Z"
+ }
+},
+{
+ "pk": 62,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.238Z",
+ "slice": 10,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:39.238Z"
+ }
+},
+{
+ "pk": 63,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.248Z",
+ "slice": 10,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:39.248Z"
+ }
+},
+{
+ "pk": 64,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.267Z",
+ "slice": 10,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:39.267Z"
+ }
+},
+{
+ "pk": 65,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.286Z",
+ "slice": 10,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:39.286Z"
+ }
+},
+{
+ "pk": 66,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.304Z",
+ "slice": 10,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:39.304Z"
+ }
+},
+{
+ "pk": 67,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.324Z",
+ "slice": 10,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:39.324Z"
+ }
+},
+{
+ "pk": 68,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.351Z",
+ "slice": 10,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:39.351Z"
+ }
+},
+{
+ "pk": 69,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.378Z",
+ "slice": 10,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:39.378Z"
+ }
+},
+{
+ "pk": 70,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.405Z",
+ "slice": 10,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:39.405Z"
+ }
+},
+{
+ "pk": 71,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.440Z",
+ "slice": 10,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:39.440Z"
+ }
+},
+{
+ "pk": 72,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.476Z",
+ "slice": 10,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:39.476Z"
+ }
+},
+{
+ "pk": 73,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.511Z",
+ "slice": 10,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:39.511Z"
+ }
+},
+{
+ "pk": 74,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.547Z",
+ "slice": 10,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:39.547Z"
+ }
+},
+{
+ "pk": 75,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.590Z",
+ "slice": 10,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:39.590Z"
+ }
+},
+{
+ "pk": 76,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.602Z",
+ "slice": 11,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:39.602Z"
+ }
+},
+{
+ "pk": 77,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.610Z",
+ "slice": 11,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:39.610Z"
+ }
+},
+{
+ "pk": 78,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.621Z",
+ "slice": 11,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:39.621Z"
+ }
+},
+{
+ "pk": 79,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.640Z",
+ "slice": 11,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:39.640Z"
+ }
+},
+{
+ "pk": 80,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.659Z",
+ "slice": 11,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:39.659Z"
+ }
+},
+{
+ "pk": 81,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.678Z",
+ "slice": 11,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:39.678Z"
+ }
+},
+{
+ "pk": 82,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.705Z",
+ "slice": 11,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:39.705Z"
+ }
+},
+{
+ "pk": 83,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.732Z",
+ "slice": 11,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:39.732Z"
+ }
+},
+{
+ "pk": 84,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.759Z",
+ "slice": 11,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:39.759Z"
+ }
+},
+{
+ "pk": 85,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.786Z",
+ "slice": 11,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:39.786Z"
+ }
+},
+{
+ "pk": 86,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.821Z",
+ "slice": 11,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:39.821Z"
+ }
+},
+{
+ "pk": 87,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.857Z",
+ "slice": 11,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:39.857Z"
+ }
+},
+{
+ "pk": 88,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.891Z",
+ "slice": 11,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:39.891Z"
+ }
+},
+{
+ "pk": 89,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.927Z",
+ "slice": 11,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:39.927Z"
+ }
+},
+{
+ "pk": 90,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.971Z",
+ "slice": 11,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:39.971Z"
+ }
+},
+{
+ "pk": 91,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.983Z",
+ "slice": 12,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:39.983Z"
+ }
+},
+{
+ "pk": 92,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:39.991Z",
+ "slice": 12,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:39.991Z"
+ }
+},
+{
+ "pk": 93,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.002Z",
+ "slice": 12,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:40.002Z"
+ }
+},
+{
+ "pk": 94,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.020Z",
+ "slice": 12,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:40.020Z"
+ }
+},
+{
+ "pk": 95,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.039Z",
+ "slice": 12,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:40.039Z"
+ }
+},
+{
+ "pk": 96,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.058Z",
+ "slice": 12,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:40.058Z"
+ }
+},
+{
+ "pk": 97,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.077Z",
+ "slice": 12,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:40.077Z"
+ }
+},
+{
+ "pk": 98,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.104Z",
+ "slice": 12,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:40.104Z"
+ }
+},
+{
+ "pk": 99,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.131Z",
+ "slice": 12,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:40.131Z"
+ }
+},
+{
+ "pk": 100,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.159Z",
+ "slice": 12,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:40.159Z"
+ }
+},
+{
+ "pk": 101,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.194Z",
+ "slice": 12,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:40.194Z"
+ }
+},
+{
+ "pk": 102,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.230Z",
+ "slice": 12,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:40.230Z"
+ }
+},
+{
+ "pk": 103,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.265Z",
+ "slice": 12,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:40.265Z"
+ }
+},
+{
+ "pk": 104,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.300Z",
+ "slice": 12,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:40.300Z"
+ }
+},
+{
+ "pk": 105,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.344Z",
+ "slice": 12,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:40.344Z"
+ }
+},
+{
+ "pk": 106,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.356Z",
+ "slice": 13,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:40.355Z"
+ }
+},
+{
+ "pk": 107,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.364Z",
+ "slice": 13,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:40.364Z"
+ }
+},
+{
+ "pk": 108,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.374Z",
+ "slice": 13,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:40.374Z"
+ }
+},
+{
+ "pk": 109,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.393Z",
+ "slice": 13,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:40.393Z"
+ }
+},
+{
+ "pk": 110,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.412Z",
+ "slice": 13,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:40.412Z"
+ }
+},
+{
+ "pk": 111,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.431Z",
+ "slice": 13,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:40.431Z"
+ }
+},
+{
+ "pk": 112,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.450Z",
+ "slice": 13,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:40.450Z"
+ }
+},
+{
+ "pk": 113,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.477Z",
+ "slice": 13,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:40.477Z"
+ }
+},
+{
+ "pk": 114,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.504Z",
+ "slice": 13,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:40.504Z"
+ }
+},
+{
+ "pk": 115,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.531Z",
+ "slice": 13,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:40.531Z"
+ }
+},
+{
+ "pk": 116,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.566Z",
+ "slice": 13,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:40.566Z"
+ }
+},
+{
+ "pk": 117,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.602Z",
+ "slice": 13,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:40.602Z"
+ }
+},
+{
+ "pk": 118,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.637Z",
+ "slice": 13,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:40.637Z"
+ }
+},
+{
+ "pk": 119,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.673Z",
+ "slice": 13,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:40.673Z"
+ }
+},
+{
+ "pk": 120,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.717Z",
+ "slice": 13,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:40.717Z"
+ }
+},
+{
+ "pk": 121,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.728Z",
+ "slice": 14,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:40.728Z"
+ }
+},
+{
+ "pk": 122,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.736Z",
+ "slice": 14,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:40.736Z"
+ }
+},
+{
+ "pk": 123,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.747Z",
+ "slice": 14,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:40.747Z"
+ }
+},
+{
+ "pk": 124,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.766Z",
+ "slice": 14,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:40.766Z"
+ }
+},
+{
+ "pk": 125,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.784Z",
+ "slice": 14,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:40.784Z"
+ }
+},
+{
+ "pk": 126,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.803Z",
+ "slice": 14,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:40.803Z"
+ }
+},
+{
+ "pk": 127,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.822Z",
+ "slice": 14,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:40.822Z"
+ }
+},
+{
+ "pk": 128,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.849Z",
+ "slice": 14,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:40.849Z"
+ }
+},
+{
+ "pk": 129,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.877Z",
+ "slice": 14,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:40.877Z"
+ }
+},
+{
+ "pk": 130,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.903Z",
+ "slice": 14,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:40.903Z"
+ }
+},
+{
+ "pk": 131,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.939Z",
+ "slice": 14,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:40.939Z"
+ }
+},
+{
+ "pk": 132,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:40.975Z",
+ "slice": 14,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:40.975Z"
+ }
+},
+{
+ "pk": 133,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.010Z",
+ "slice": 14,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:41.010Z"
+ }
+},
+{
+ "pk": 134,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.045Z",
+ "slice": 14,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:41.045Z"
+ }
+},
+{
+ "pk": 135,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.089Z",
+ "slice": 14,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:41.089Z"
+ }
+},
+{
+ "pk": 136,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.101Z",
+ "slice": 15,
+ "role": 1,
+ "user": 2,
+ "created": "2013-12-18T21:21:41.101Z"
+ }
+},
+{
+ "pk": 137,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.109Z",
+ "slice": 15,
+ "role": 1,
+ "user": 3,
+ "created": "2013-12-18T21:21:41.109Z"
+ }
+},
+{
+ "pk": 138,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.119Z",
+ "slice": 15,
+ "role": 1,
+ "user": 4,
+ "created": "2013-12-18T21:21:41.119Z"
+ }
+},
+{
+ "pk": 139,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.138Z",
+ "slice": 15,
+ "role": 1,
+ "user": 5,
+ "created": "2013-12-18T21:21:41.138Z"
+ }
+},
+{
+ "pk": 140,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.157Z",
+ "slice": 15,
+ "role": 1,
+ "user": 6,
+ "created": "2013-12-18T21:21:41.157Z"
+ }
+},
+{
+ "pk": 141,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.176Z",
+ "slice": 15,
+ "role": 1,
+ "user": 7,
+ "created": "2013-12-18T21:21:41.176Z"
+ }
+},
+{
+ "pk": 142,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.204Z",
+ "slice": 15,
+ "role": 1,
+ "user": 9,
+ "created": "2013-12-18T21:21:41.203Z"
+ }
+},
+{
+ "pk": 143,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.231Z",
+ "slice": 15,
+ "role": 1,
+ "user": 10,
+ "created": "2013-12-18T21:21:41.231Z"
+ }
+},
+{
+ "pk": 144,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.258Z",
+ "slice": 15,
+ "role": 1,
+ "user": 11,
+ "created": "2013-12-18T21:21:41.258Z"
+ }
+},
+{
+ "pk": 145,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.285Z",
+ "slice": 15,
+ "role": 1,
+ "user": 12,
+ "created": "2013-12-18T21:21:41.285Z"
+ }
+},
+{
+ "pk": 146,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.320Z",
+ "slice": 15,
+ "role": 1,
+ "user": 13,
+ "created": "2013-12-18T21:21:41.320Z"
+ }
+},
+{
+ "pk": 147,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.356Z",
+ "slice": 15,
+ "role": 1,
+ "user": 14,
+ "created": "2013-12-18T21:21:41.356Z"
+ }
+},
+{
+ "pk": 148,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.391Z",
+ "slice": 15,
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-18T21:21:41.391Z"
+ }
+},
+{
+ "pk": 149,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.426Z",
+ "slice": 15,
+ "role": 1,
+ "user": 1,
+ "created": "2013-12-18T21:21:41.426Z"
+ }
+},
+{
+ "pk": 150,
+ "model": "core.sliceprivilege",
+ "fields": {
+ "updated": "2013-12-18T21:21:41.470Z",
+ "slice": 15,
+ "role": 1,
+ "user": 8,
+ "created": "2013-12-18T21:21:41.470Z"
+ }
+},
+{
+ "pk": 1,
"model": "core.image",
"fields": {
"updated": "2013-12-09T14:26:56.787Z",
@@ -5135,6 +6842,50 @@
}
},
{
+ "pk": 752,
+ "model": "core.node",
+ "fields": {
+ "site": 23,
+ "updated": "2013-12-17T17:10:48.740Z",
+ "deployment": 10,
+ "name": "opencloud0.sing.internet2.edu",
+ "created": "2013-12-17T17:10:48.740Z"
+ }
+},
+{
+ "pk": 753,
+ "model": "core.node",
+ "fields": {
+ "site": 23,
+ "updated": "2013-12-17T17:10:48.742Z",
+ "deployment": 10,
+ "name": "opencloud1.sing.internet2.edu",
+ "created": "2013-12-17T17:10:48.741Z"
+ }
+},
+{
+ "pk": 754,
+ "model": "core.node",
+ "fields": {
+ "site": 23,
+ "updated": "2013-12-17T17:10:48.742Z",
+ "deployment": 10,
+ "name": "opencloud2.sing.internet2.edu",
+ "created": "2013-12-17T17:10:48.742Z"
+ }
+},
+{
+ "pk": 755,
+ "model": "core.node",
+ "fields": {
+ "site": 23,
+ "updated": "2013-12-17T17:10:48.743Z",
+ "deployment": 10,
+ "name": "opencloud3.sing.internet2.edu",
+ "created": "2013-12-17T17:10:48.743Z"
+ }
+},
+{
"pk": 4,
"model": "core.serviceresource",
"fields": {
@@ -5961,9 +7712,9 @@
"pk": 81,
"model": "core.sliver",
"fields": {
- "node": 546,
+ "node": 588,
"instance_name": null,
- "updated": "2013-12-13T21:58:13.897Z",
+ "updated": "2013-12-18T22:21:36.513Z",
"slice": 14,
"deploymentNetwork": 7,
"name": "test-slice-1",
@@ -5979,9 +7730,9 @@
"pk": 82,
"model": "core.sliver",
"fields": {
- "node": 538,
+ "node": 589,
"instance_name": null,
- "updated": "2013-12-13T21:58:44.349Z",
+ "updated": "2013-12-18T22:21:36.522Z",
"slice": 14,
"deploymentNetwork": 7,
"name": "test-slice-1",
@@ -5997,9 +7748,9 @@
"pk": 83,
"model": "core.sliver",
"fields": {
- "node": 556,
+ "node": 590,
"instance_name": null,
- "updated": "2013-12-13T21:58:44.350Z",
+ "updated": "2013-12-18T22:21:36.530Z",
"slice": 14,
"deploymentNetwork": 7,
"name": "test-slice-1",
@@ -6069,9 +7820,9 @@
"pk": 87,
"model": "core.sliver",
"fields": {
- "node": 533,
+ "node": 592,
"instance_name": null,
- "updated": "2013-12-13T22:01:30.192Z",
+ "updated": "2013-12-18T22:22:04.726Z",
"slice": 15,
"deploymentNetwork": 7,
"name": "test-slice-2",
@@ -6087,9 +7838,9 @@
"pk": 88,
"model": "core.sliver",
"fields": {
- "node": 536,
+ "node": 593,
"instance_name": null,
- "updated": "2013-12-13T22:01:49.742Z",
+ "updated": "2013-12-18T22:22:04.734Z",
"slice": 15,
"deploymentNetwork": 7,
"name": "test-slice-2",
@@ -6102,6 +7853,902 @@
}
},
{
+ "pk": 288,
+ "model": "core.sliver",
+ "fields": {
+ "node": 433,
+ "instance_name": "instance-000005dc",
+ "updated": "2013-12-18T21:41:49.275Z",
+ "slice": 6,
+ "deploymentNetwork": 5,
+ "name": "node50.stanford.vicci.org",
+ "created": "2013-12-18T21:41:49.275Z",
+ "ip": "171.67.92.188",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 289,
+ "model": "core.sliver",
+ "fields": {
+ "node": 643,
+ "instance_name": "instance-000005dd",
+ "updated": "2013-12-18T21:41:49.293Z",
+ "slice": 6,
+ "deploymentNetwork": 8,
+ "name": "node50.gt.vicci.org",
+ "created": "2013-12-18T21:41:49.293Z",
+ "ip": "130.207.98.59",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 290,
+ "model": "core.sliver",
+ "fields": {
+ "node": 713,
+ "instance_name": "instance-000005de",
+ "updated": "2013-12-18T21:41:49.310Z",
+ "slice": 6,
+ "deploymentNetwork": 9,
+ "name": "node50.mpisws.vicci.org",
+ "created": "2013-12-18T21:41:49.310Z",
+ "ip": "141.39.220.60",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 291,
+ "model": "core.sliver",
+ "fields": {
+ "node": 503,
+ "instance_name": "instance-000005df",
+ "updated": "2013-12-18T21:41:49.326Z",
+ "slice": 6,
+ "deploymentNetwork": 6,
+ "name": "node50.washington.vicci.org",
+ "created": "2013-12-18T21:41:49.326Z",
+ "ip": "128.95.1.155",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 292,
+ "model": "core.sliver",
+ "fields": {
+ "node": 513,
+ "instance_name": "instance-000005e0",
+ "updated": "2013-12-18T21:41:49.343Z",
+ "slice": 6,
+ "deploymentNetwork": 6,
+ "name": "node60.washington.vicci.org",
+ "created": "2013-12-18T21:41:49.343Z",
+ "ip": "128.95.1.165",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 293,
+ "model": "core.sliver",
+ "fields": {
+ "node": 723,
+ "instance_name": "instance-000005e1",
+ "updated": "2013-12-18T21:41:49.359Z",
+ "slice": 6,
+ "deploymentNetwork": 9,
+ "name": "node60.mpisws.vicci.org",
+ "created": "2013-12-18T21:41:49.359Z",
+ "ip": "141.39.220.70",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 294,
+ "model": "core.sliver",
+ "fields": {
+ "node": 603,
+ "instance_name": "instance-000005e2",
+ "updated": "2013-12-18T21:41:49.376Z",
+ "slice": 6,
+ "deploymentNetwork": 8,
+ "name": "node10.gt.vicci.org",
+ "created": "2013-12-18T21:41:49.376Z",
+ "ip": "130.207.98.19",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 295,
+ "model": "core.sliver",
+ "fields": {
+ "node": 559,
+ "instance_name": "instance-000005e3",
+ "updated": "2013-12-18T21:41:49.393Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node36.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.393Z",
+ "ip": "128.112.171.90",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 296,
+ "model": "core.sliver",
+ "fields": {
+ "node": 560,
+ "instance_name": "instance-000005e4",
+ "updated": "2013-12-18T21:41:49.409Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node37.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.409Z",
+ "ip": "128.112.171.92",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 297,
+ "model": "core.sliver",
+ "fields": {
+ "node": 561,
+ "instance_name": "instance-000005e5",
+ "updated": "2013-12-18T21:41:49.426Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node38.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.426Z",
+ "ip": "128.112.171.94",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 298,
+ "model": "core.sliver",
+ "fields": {
+ "node": 562,
+ "instance_name": "instance-000005e6",
+ "updated": "2013-12-18T21:41:49.442Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node39.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.442Z",
+ "ip": "128.112.171.96",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 299,
+ "model": "core.sliver",
+ "fields": {
+ "node": 563,
+ "instance_name": "instance-000005e7",
+ "updated": "2013-12-18T21:41:49.459Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node40.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.459Z",
+ "ip": "128.112.171.98",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 300,
+ "model": "core.sliver",
+ "fields": {
+ "node": 564,
+ "instance_name": "instance-000005e8",
+ "updated": "2013-12-18T21:41:49.476Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node41.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.475Z",
+ "ip": "128.112.171.100",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 301,
+ "model": "core.sliver",
+ "fields": {
+ "node": 565,
+ "instance_name": "instance-000005e9",
+ "updated": "2013-12-18T21:41:49.492Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node42.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.492Z",
+ "ip": "128.112.171.102",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 302,
+ "model": "core.sliver",
+ "fields": {
+ "node": 566,
+ "instance_name": "instance-000005ea",
+ "updated": "2013-12-18T21:41:49.508Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node43.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.508Z",
+ "ip": "128.112.171.104",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 303,
+ "model": "core.sliver",
+ "fields": {
+ "node": 567,
+ "instance_name": "instance-000005eb",
+ "updated": "2013-12-18T21:41:49.525Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node44.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.525Z",
+ "ip": "128.112.171.106",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 304,
+ "model": "core.sliver",
+ "fields": {
+ "node": 568,
+ "instance_name": "instance-000005ec",
+ "updated": "2013-12-18T21:41:49.542Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node45.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.542Z",
+ "ip": "128.112.171.108",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 305,
+ "model": "core.sliver",
+ "fields": {
+ "node": 569,
+ "instance_name": "instance-000005ed",
+ "updated": "2013-12-18T21:41:49.558Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node46.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.558Z",
+ "ip": "128.112.171.110",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 306,
+ "model": "core.sliver",
+ "fields": {
+ "node": 570,
+ "instance_name": "instance-000005ee",
+ "updated": "2013-12-18T21:41:49.575Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node47.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.575Z",
+ "ip": "128.112.171.112",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 307,
+ "model": "core.sliver",
+ "fields": {
+ "node": 571,
+ "instance_name": "instance-000005ef",
+ "updated": "2013-12-18T21:41:49.591Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node48.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.591Z",
+ "ip": "128.112.171.114",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 308,
+ "model": "core.sliver",
+ "fields": {
+ "node": 572,
+ "instance_name": "instance-000005f0",
+ "updated": "2013-12-18T21:41:49.608Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node49.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.608Z",
+ "ip": "128.112.171.116",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 309,
+ "model": "core.sliver",
+ "fields": {
+ "node": 573,
+ "instance_name": "instance-000005f1",
+ "updated": "2013-12-18T21:41:49.625Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node50.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.625Z",
+ "ip": "128.112.171.118",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 310,
+ "model": "core.sliver",
+ "fields": {
+ "node": 574,
+ "instance_name": "instance-000005f2",
+ "updated": "2013-12-18T21:41:49.641Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node51.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.641Z",
+ "ip": "128.112.171.120",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 311,
+ "model": "core.sliver",
+ "fields": {
+ "node": 575,
+ "instance_name": "instance-000005f3",
+ "updated": "2013-12-18T21:41:49.658Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node52.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.658Z",
+ "ip": "128.112.171.122",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 312,
+ "model": "core.sliver",
+ "fields": {
+ "node": 576,
+ "instance_name": "instance-000005f4",
+ "updated": "2013-12-18T21:41:49.674Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node53.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.674Z",
+ "ip": "128.112.171.124",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 313,
+ "model": "core.sliver",
+ "fields": {
+ "node": 577,
+ "instance_name": "instance-000005f5",
+ "updated": "2013-12-18T21:41:49.691Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node54.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.691Z",
+ "ip": "128.112.171.126",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 314,
+ "model": "core.sliver",
+ "fields": {
+ "node": 578,
+ "instance_name": "instance-000005f6",
+ "updated": "2013-12-18T21:41:49.707Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node55.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.707Z",
+ "ip": "128.112.171.128",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 315,
+ "model": "core.sliver",
+ "fields": {
+ "node": 579,
+ "instance_name": "instance-000005f7",
+ "updated": "2013-12-18T21:41:49.724Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node56.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.724Z",
+ "ip": "128.112.171.130",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 316,
+ "model": "core.sliver",
+ "fields": {
+ "node": 580,
+ "instance_name": "instance-000005f8",
+ "updated": "2013-12-18T21:41:49.741Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node57.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.740Z",
+ "ip": "128.112.171.132",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 317,
+ "model": "core.sliver",
+ "fields": {
+ "node": 581,
+ "instance_name": "instance-000005f9",
+ "updated": "2013-12-18T21:41:49.757Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node58.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.757Z",
+ "ip": "128.112.171.134",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 318,
+ "model": "core.sliver",
+ "fields": {
+ "node": 582,
+ "instance_name": "instance-000005fa",
+ "updated": "2013-12-18T21:41:49.774Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node59.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.774Z",
+ "ip": "128.112.171.136",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 319,
+ "model": "core.sliver",
+ "fields": {
+ "node": 583,
+ "instance_name": "instance-000005fb",
+ "updated": "2013-12-18T21:41:49.790Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node60.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.790Z",
+ "ip": "128.112.171.138",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 320,
+ "model": "core.sliver",
+ "fields": {
+ "node": 584,
+ "instance_name": "instance-000005fc",
+ "updated": "2013-12-18T21:41:49.807Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node61.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.807Z",
+ "ip": "128.112.171.140",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 321,
+ "model": "core.sliver",
+ "fields": {
+ "node": 585,
+ "instance_name": "instance-000005fd",
+ "updated": "2013-12-18T21:41:49.823Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node62.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.823Z",
+ "ip": "128.112.171.142",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 322,
+ "model": "core.sliver",
+ "fields": {
+ "node": 586,
+ "instance_name": "instance-000005fe",
+ "updated": "2013-12-18T21:41:49.840Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node63.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.840Z",
+ "ip": "128.112.171.144",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 323,
+ "model": "core.sliver",
+ "fields": {
+ "node": 587,
+ "instance_name": "instance-000005ff",
+ "updated": "2013-12-18T21:41:49.856Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node64.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.856Z",
+ "ip": "128.112.171.146",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 324,
+ "model": "core.sliver",
+ "fields": {
+ "node": 588,
+ "instance_name": "instance-00000600",
+ "updated": "2013-12-18T21:41:49.873Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node65.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.873Z",
+ "ip": "128.112.171.148",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 325,
+ "model": "core.sliver",
+ "fields": {
+ "node": 589,
+ "instance_name": "instance-00000601",
+ "updated": "2013-12-18T21:41:49.890Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node66.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.890Z",
+ "ip": "128.112.171.150",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 326,
+ "model": "core.sliver",
+ "fields": {
+ "node": 590,
+ "instance_name": "instance-00000602",
+ "updated": "2013-12-18T21:41:49.906Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node67.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.906Z",
+ "ip": "128.112.171.152",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 327,
+ "model": "core.sliver",
+ "fields": {
+ "node": 591,
+ "instance_name": "instance-00000603",
+ "updated": "2013-12-18T21:41:49.923Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node68.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.923Z",
+ "ip": "128.112.171.154",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 328,
+ "model": "core.sliver",
+ "fields": {
+ "node": 592,
+ "instance_name": "instance-00000604",
+ "updated": "2013-12-18T21:41:49.939Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node69.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.939Z",
+ "ip": "128.112.171.156",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 329,
+ "model": "core.sliver",
+ "fields": {
+ "node": 593,
+ "instance_name": "instance-00000605",
+ "updated": "2013-12-18T21:41:49.956Z",
+ "slice": 6,
+ "deploymentNetwork": 7,
+ "name": "node70.princeton.vicci.org",
+ "created": "2013-12-18T21:41:49.956Z",
+ "ip": "128.112.171.158",
+ "image": 1,
+ "creator": 8,
+ "numberCores": 1,
+ "instance_id": null
+ }
+},
+{
+ "pk": 1,
+ "model": "core.reservation",
+ "fields": {
+ "duration": 48,
+ "updated": "2013-12-18T23:32:41.619Z",
+ "slice": 9,
+ "startTime": "2013-12-20T20:31:42Z",
+ "created": "2013-12-18T23:32:07.665Z"
+ }
+},
+{
+ "pk": 2,
+ "model": "core.reservation",
+ "fields": {
+ "duration": 48,
+ "updated": "2013-12-18T23:34:02.148Z",
+ "slice": 8,
+ "startTime": "2013-12-20T20:33:23Z",
+ "created": "2013-12-18T23:33:27.591Z"
+ }
+},
+{
+ "pk": 3,
+ "model": "core.reservation",
+ "fields": {
+ "duration": 24,
+ "updated": "2013-12-18T23:35:45.483Z",
+ "slice": 13,
+ "startTime": "2013-12-20T20:34:32Z",
+ "created": "2013-12-18T23:34:55.406Z"
+ }
+},
+{
+ "pk": 4,
+ "model": "core.reservation",
+ "fields": {
+ "duration": 24,
+ "updated": "2013-12-18T23:35:25.727Z",
+ "slice": 13,
+ "startTime": "2013-12-23T20:34:49Z",
+ "created": "2013-12-18T23:34:55.407Z"
+ }
+},
+{
+ "pk": 1,
+ "model": "core.reservedresource",
+ "fields": {
+ "updated": "2013-12-18T23:32:41.622Z",
+ "reservationSet": 1,
+ "created": "2013-12-18T23:32:41.622Z",
+ "resource": 8,
+ "quantity": 5,
+ "sliver": 78
+ }
+},
+{
+ "pk": 2,
+ "model": "core.reservedresource",
+ "fields": {
+ "updated": "2013-12-18T23:34:02.152Z",
+ "reservationSet": 2,
+ "created": "2013-12-18T23:34:02.152Z",
+ "resource": 8,
+ "quantity": 5,
+ "sliver": 77
+ }
+},
+{
+ "pk": 3,
+ "model": "core.reservedresource",
+ "fields": {
+ "updated": "2013-12-18T23:35:25.731Z",
+ "reservationSet": 4,
+ "created": "2013-12-18T23:35:25.731Z",
+ "resource": 8,
+ "quantity": 1,
+ "sliver": 84
+ }
+},
+{
+ "pk": 4,
+ "model": "core.reservedresource",
+ "fields": {
+ "updated": "2013-12-18T23:35:25.732Z",
+ "reservationSet": 4,
+ "created": "2013-12-18T23:35:25.732Z",
+ "resource": 8,
+ "quantity": 1,
+ "sliver": 85
+ }
+},
+{
+ "pk": 5,
+ "model": "core.reservedresource",
+ "fields": {
+ "updated": "2013-12-18T23:35:25.733Z",
+ "reservationSet": 4,
+ "created": "2013-12-18T23:35:25.733Z",
+ "resource": 8,
+ "quantity": 1,
+ "sliver": 86
+ }
+},
+{
+ "pk": 6,
+ "model": "core.reservedresource",
+ "fields": {
+ "updated": "2013-12-18T23:35:45.486Z",
+ "reservationSet": 3,
+ "created": "2013-12-18T23:35:45.486Z",
+ "resource": 8,
+ "quantity": 1,
+ "sliver": 84
+ }
+},
+{
+ "pk": 7,
+ "model": "core.reservedresource",
+ "fields": {
+ "updated": "2013-12-18T23:35:45.488Z",
+ "reservationSet": 3,
+ "created": "2013-12-18T23:35:45.487Z",
+ "resource": 8,
+ "quantity": 1,
+ "sliver": 85
+ }
+},
+{
+ "pk": 8,
+ "model": "core.reservedresource",
+ "fields": {
+ "updated": "2013-12-18T23:35:45.488Z",
+ "reservationSet": 3,
+ "created": "2013-12-18T23:35:45.488Z",
+ "resource": 8,
+ "quantity": 1,
+ "sliver": 86
+ }
+},
+{
"pk": 1,
"model": "core.networktemplate",
"fields": {
@@ -6482,6 +9129,209 @@
}
},
{
+ "pk": 17,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-18T22:05:09.944Z",
+ "subnet_id": "",
+ "name": "infrastructure-private",
+ "created": "2013-12-18T22:05:09.944Z",
+ "permitAllSlices": false,
+ "permittedSlices": [],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 4,
+ "owner": 10,
+ "ports": ""
+ }
+},
+{
+ "pk": 18,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-18T22:05:50.112Z",
+ "subnet_id": "",
+ "name": "infrastructure-public",
+ "created": "2013-12-18T22:05:50.112Z",
+ "permitAllSlices": false,
+ "permittedSlices": [],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 1,
+ "owner": 10,
+ "ports": ""
+ }
+},
+{
+ "pk": 19,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-18T22:13:17.310Z",
+ "subnet_id": "",
+ "name": "dnsdemux-private",
+ "created": "2013-12-18T22:13:17.310Z",
+ "permitAllSlices": false,
+ "permittedSlices": [],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 4,
+ "owner": 9,
+ "ports": ""
+ }
+},
+{
+ "pk": 20,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-18T22:13:38.194Z",
+ "subnet_id": "",
+ "name": "dnsdemux-public",
+ "created": "2013-12-18T22:13:38.194Z",
+ "permitAllSlices": false,
+ "permittedSlices": [],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 1,
+ "owner": 9,
+ "ports": ""
+ }
+},
+{
+ "pk": 21,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-18T22:16:19.797Z",
+ "subnet_id": "",
+ "name": "DnsRedir-private",
+ "created": "2013-12-18T22:16:19.797Z",
+ "permitAllSlices": false,
+ "permittedSlices": [],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 4,
+ "owner": 8,
+ "ports": ""
+ }
+},
+{
+ "pk": 22,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-18T22:16:38.335Z",
+ "subnet_id": "",
+ "name": "DnsRedir-public",
+ "created": "2013-12-18T22:16:38.335Z",
+ "permitAllSlices": false,
+ "permittedSlices": [],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 1,
+ "owner": 8,
+ "ports": ""
+ }
+},
+{
+ "pk": 23,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-19T00:13:55.598Z",
+ "subnet_id": "",
+ "name": "HyperCache-private",
+ "created": "2013-12-18T22:24:19.109Z",
+ "permitAllSlices": false,
+ "permittedSlices": [
+ 6,
+ 8
+ ],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 4,
+ "owner": 4,
+ "ports": ""
+ }
+},
+{
+ "pk": 24,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-18T22:24:38.066Z",
+ "subnet_id": "",
+ "name": "HyperCache-public",
+ "created": "2013-12-18T22:24:38.066Z",
+ "permitAllSlices": false,
+ "permittedSlices": [],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 1,
+ "owner": 4,
+ "ports": ""
+ }
+},
+{
+ "pk": 25,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-18T22:26:46.435Z",
+ "subnet_id": "",
+ "name": "Syndicate-private",
+ "created": "2013-12-18T22:26:46.435Z",
+ "permitAllSlices": false,
+ "permittedSlices": [],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 4,
+ "owner": 6,
+ "ports": ""
+ }
+},
+{
+ "pk": 26,
+ "model": "core.network",
+ "fields": {
+ "router_id": "",
+ "subnet": "",
+ "updated": "2013-12-18T22:27:12.647Z",
+ "subnet_id": "",
+ "name": "Syndicate-public",
+ "created": "2013-12-18T22:27:12.647Z",
+ "permitAllSlices": false,
+ "permittedSlices": [],
+ "labels": "",
+ "guaranteedBandwidth": 0,
+ "network_id": "",
+ "template": 1,
+ "owner": 6,
+ "ports": ""
+ }
+},
+{
"pk": 1,
"model": "core.networkslice",
"fields": {
@@ -6592,6 +9442,126 @@
}
},
{
+ "pk": 12,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:06:00.381Z",
+ "slice": 10,
+ "network": 17,
+ "created": "2013-12-18T22:06:00.381Z"
+ }
+},
+{
+ "pk": 13,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:06:00.386Z",
+ "slice": 10,
+ "network": 18,
+ "created": "2013-12-18T22:06:00.386Z"
+ }
+},
+{
+ "pk": 14,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:13:42.177Z",
+ "slice": 9,
+ "network": 19,
+ "created": "2013-12-18T22:13:42.177Z"
+ }
+},
+{
+ "pk": 15,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:13:42.183Z",
+ "slice": 9,
+ "network": 20,
+ "created": "2013-12-18T22:13:42.183Z"
+ }
+},
+{
+ "pk": 16,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:16:41.007Z",
+ "slice": 8,
+ "network": 21,
+ "created": "2013-12-18T22:16:41.007Z"
+ }
+},
+{
+ "pk": 17,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:16:41.013Z",
+ "slice": 8,
+ "network": 22,
+ "created": "2013-12-18T22:16:41.013Z"
+ }
+},
+{
+ "pk": 18,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:24:44.997Z",
+ "slice": 4,
+ "network": 23,
+ "created": "2013-12-18T22:24:44.997Z"
+ }
+},
+{
+ "pk": 19,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:24:45.003Z",
+ "slice": 4,
+ "network": 24,
+ "created": "2013-12-18T22:24:45.003Z"
+ }
+},
+{
+ "pk": 20,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:27:16.953Z",
+ "slice": 6,
+ "network": 25,
+ "created": "2013-12-18T22:27:16.953Z"
+ }
+},
+{
+ "pk": 21,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-18T22:27:16.959Z",
+ "slice": 6,
+ "network": 26,
+ "created": "2013-12-18T22:27:16.959Z"
+ }
+},
+{
+ "pk": 22,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-19T00:14:36.949Z",
+ "slice": 6,
+ "network": 23,
+ "created": "2013-12-19T00:14:36.949Z"
+ }
+},
+{
+ "pk": 23,
+ "model": "core.networkslice",
+ "fields": {
+ "updated": "2013-12-19T00:15:11.362Z",
+ "slice": 8,
+ "network": 23,
+ "created": "2013-12-19T00:15:11.362Z"
+ }
+},
+{
"pk": 1,
"model": "core.networkparametertype",
"fields": {
@@ -6622,24821 +9592,31044 @@
}
},
{
- "pk": 12,
+ "pk": 14,
"model": "core.account",
"fields": {
- "updated": "2013-12-13T22:19:42.679Z",
+ "updated": "2013-12-18T21:29:00.470Z",
"site": 10,
- "created": "2013-12-13T22:19:42.679Z"
+ "created": "2013-12-18T21:29:00.470Z"
}
},
{
- "pk": 13,
+ "pk": 15,
"model": "core.account",
"fields": {
- "updated": "2013-12-13T22:19:42.705Z",
+ "updated": "2013-12-18T21:29:00.495Z",
"site": 22,
- "created": "2013-12-13T22:19:42.705Z"
+ "created": "2013-12-18T21:29:00.495Z"
}
},
{
- "pk": 53,
+ "pk": 16,
+ "model": "core.account",
+ "fields": {
+ "updated": "2013-12-18T21:29:00.502Z",
+ "site": 24,
+ "created": "2013-12-18T21:29:00.502Z"
+ }
+},
+{
+ "pk": 63,
"model": "core.invoice",
"fields": {
- "date": "2013-11-13T22:00:00Z",
- "updated": "2013-12-13T22:19:55.029Z",
- "account": 12,
- "created": "2013-12-13T22:19:55.029Z"
+ "date": "2013-11-18T21:00:00Z",
+ "updated": "2013-12-18T21:29:16.421Z",
+ "account": 14,
+ "created": "2013-12-18T21:29:16.421Z"
}
},
{
- "pk": 54,
+ "pk": 64,
"model": "core.invoice",
"fields": {
- "date": "2013-11-17T22:00:00Z",
- "updated": "2013-12-13T22:19:55.041Z",
- "account": 12,
- "created": "2013-12-13T22:19:55.041Z"
+ "date": "2013-11-24T21:00:00Z",
+ "updated": "2013-12-18T21:29:16.434Z",
+ "account": 14,
+ "created": "2013-12-18T21:29:16.434Z"
}
},
{
- "pk": 55,
+ "pk": 65,
"model": "core.invoice",
"fields": {
- "date": "2013-11-24T22:00:00Z",
- "updated": "2013-12-13T22:19:55.604Z",
- "account": 12,
- "created": "2013-12-13T22:19:55.604Z"
+ "date": "2013-12-01T21:00:00Z",
+ "updated": "2013-12-18T21:29:17.229Z",
+ "account": 14,
+ "created": "2013-12-18T21:29:17.229Z"
}
},
{
- "pk": 56,
+ "pk": 66,
"model": "core.invoice",
"fields": {
- "date": "2013-12-01T22:00:00Z",
- "updated": "2013-12-13T22:19:56.482Z",
- "account": 12,
- "created": "2013-12-13T22:19:56.482Z"
+ "date": "2013-12-08T21:00:00Z",
+ "updated": "2013-12-18T21:29:18.213Z",
+ "account": 14,
+ "created": "2013-12-18T21:29:18.212Z"
}
},
{
- "pk": 57,
+ "pk": 67,
"model": "core.invoice",
"fields": {
- "date": "2013-12-08T22:00:00Z",
- "updated": "2013-12-13T22:19:57.362Z",
- "account": 12,
- "created": "2013-12-13T22:19:57.362Z"
+ "date": "2013-12-15T21:00:00Z",
+ "updated": "2013-12-18T21:29:19.091Z",
+ "account": 14,
+ "created": "2013-12-18T21:29:19.091Z"
}
},
{
- "pk": 58,
+ "pk": 68,
"model": "core.invoice",
"fields": {
- "date": "2013-11-13T22:00:00Z",
- "updated": "2013-12-13T22:19:58.399Z",
- "account": 13,
- "created": "2013-12-13T22:19:58.399Z"
+ "date": "2013-11-18T21:00:00Z",
+ "updated": "2013-12-18T21:29:20.175Z",
+ "account": 15,
+ "created": "2013-12-18T21:29:20.175Z"
}
},
{
- "pk": 59,
+ "pk": 69,
"model": "core.invoice",
"fields": {
- "date": "2013-11-17T22:00:00Z",
- "updated": "2013-12-13T22:19:58.414Z",
- "account": 13,
- "created": "2013-12-13T22:19:58.414Z"
+ "date": "2013-11-24T21:00:00Z",
+ "updated": "2013-12-18T21:29:20.193Z",
+ "account": 15,
+ "created": "2013-12-18T21:29:20.193Z"
}
},
{
- "pk": 60,
+ "pk": 70,
"model": "core.invoice",
"fields": {
- "date": "2013-11-24T22:00:00Z",
- "updated": "2013-12-13T22:19:59.616Z",
- "account": 13,
- "created": "2013-12-13T22:19:59.616Z"
+ "date": "2013-12-01T21:00:00Z",
+ "updated": "2013-12-18T21:29:22.239Z",
+ "account": 15,
+ "created": "2013-12-18T21:29:22.239Z"
}
},
{
- "pk": 61,
+ "pk": 71,
"model": "core.invoice",
"fields": {
- "date": "2013-12-01T22:00:00Z",
- "updated": "2013-12-13T22:20:01.950Z",
- "account": 13,
- "created": "2013-12-13T22:20:01.950Z"
+ "date": "2013-12-08T21:00:00Z",
+ "updated": "2013-12-18T21:29:24.550Z",
+ "account": 15,
+ "created": "2013-12-18T21:29:24.550Z"
}
},
{
- "pk": 62,
+ "pk": 72,
"model": "core.invoice",
"fields": {
- "date": "2013-12-08T22:00:00Z",
- "updated": "2013-12-13T22:20:03.878Z",
- "account": 13,
- "created": "2013-12-13T22:20:03.878Z"
+ "date": "2013-12-15T21:00:00Z",
+ "updated": "2013-12-18T21:29:26.820Z",
+ "account": 15,
+ "created": "2013-12-18T21:29:26.820Z"
}
},
{
- "pk": 89,
+ "pk": 73,
+ "model": "core.invoice",
+ "fields": {
+ "date": "2013-11-18T21:00:00Z",
+ "updated": "2013-12-18T21:29:29.206Z",
+ "account": 16,
+ "created": "2013-12-18T21:29:29.206Z"
+ }
+},
+{
+ "pk": 74,
+ "model": "core.invoice",
+ "fields": {
+ "date": "2013-11-24T21:00:00Z",
+ "updated": "2013-12-18T21:29:29.222Z",
+ "account": 16,
+ "created": "2013-12-18T21:29:29.222Z"
+ }
+},
+{
+ "pk": 75,
+ "model": "core.invoice",
+ "fields": {
+ "date": "2013-12-01T21:00:00Z",
+ "updated": "2013-12-18T21:29:29.538Z",
+ "account": 16,
+ "created": "2013-12-18T21:29:29.538Z"
+ }
+},
+{
+ "pk": 76,
+ "model": "core.invoice",
+ "fields": {
+ "date": "2013-12-08T21:00:00Z",
+ "updated": "2013-12-18T21:29:29.894Z",
+ "account": 16,
+ "created": "2013-12-18T21:29:29.894Z"
+ }
+},
+{
+ "pk": 77,
+ "model": "core.invoice",
+ "fields": {
+ "date": "2013-12-15T21:00:00Z",
+ "updated": "2013-12-18T21:29:30.251Z",
+ "account": 16,
+ "created": "2013-12-18T21:29:30.251Z"
+ }
+},
+{
+ "pk": 104,
"model": "core.usableobject",
"fields": {
- "updated": "2013-12-13T22:19:42.730Z",
- "name": "node20.gt.vicci.org",
- "created": "2013-12-13T22:19:42.730Z"
+ "updated": "2013-12-18T21:29:00.529Z",
+ "name": "node17.washington.vicci.org",
+ "created": "2013-12-18T21:29:00.529Z"
}
},
{
- "pk": 90,
+ "pk": 105,
"model": "core.usableobject",
"fields": {
- "updated": "2013-12-13T22:19:43.483Z",
- "name": "node22.gt.vicci.org",
- "created": "2013-12-13T22:19:43.483Z"
- }
-},
-{
- "pk": 91,
- "model": "core.usableobject",
- "fields": {
- "updated": "2013-12-13T22:19:44.237Z",
- "name": "node24.gt.vicci.org",
- "created": "2013-12-13T22:19:44.237Z"
- }
-},
-{
- "pk": 92,
- "model": "core.usableobject",
- "fields": {
- "updated": "2013-12-13T22:19:44.992Z",
- "name": "node29.gt.vicci.org",
- "created": "2013-12-13T22:19:44.992Z"
- }
-},
-{
- "pk": 93,
- "model": "core.usableobject",
- "fields": {
- "updated": "2013-12-13T22:19:45.806Z",
- "name": "node30.princeton.vicci.org",
- "created": "2013-12-13T22:19:45.806Z"
- }
-},
-{
- "pk": 94,
- "model": "core.usableobject",
- "fields": {
- "updated": "2013-12-13T22:19:47.339Z",
+ "updated": "2013-12-18T21:29:01.289Z",
"name": "node16.washington.vicci.org",
- "created": "2013-12-13T22:19:47.339Z"
+ "created": "2013-12-18T21:29:01.289Z"
}
},
{
- "pk": 95,
+ "pk": 106,
"model": "core.usableobject",
"fields": {
- "updated": "2013-12-13T22:19:48.112Z",
+ "updated": "2013-12-18T21:29:02.189Z",
+ "name": "node15.washington.vicci.org",
+ "created": "2013-12-18T21:29:02.189Z"
+ }
+},
+{
+ "pk": 107,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.178Z",
+ "name": "node14.washington.vicci.org",
+ "created": "2013-12-18T21:29:03.178Z"
+ }
+},
+{
+ "pk": 108,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.942Z",
+ "name": "node70.princeton.vicci.org",
+ "created": "2013-12-18T21:29:03.942Z"
+ }
+},
+{
+ "pk": 109,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:04.702Z",
+ "name": "node69.princeton.vicci.org",
+ "created": "2013-12-18T21:29:04.702Z"
+ }
+},
+{
+ "pk": 110,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:05.547Z",
+ "name": "node68.princeton.vicci.org",
+ "created": "2013-12-18T21:29:05.547Z"
+ }
+},
+{
+ "pk": 111,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:06.336Z",
+ "name": "node67.princeton.vicci.org",
+ "created": "2013-12-18T21:29:06.336Z"
+ }
+},
+{
+ "pk": 112,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.101Z",
+ "name": "node30.princeton.vicci.org",
+ "created": "2013-12-18T21:29:07.101Z"
+ }
+},
+{
+ "pk": 113,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:09.453Z",
"name": "node55.stanford.vicci.org",
- "created": "2013-12-13T22:19:48.112Z"
+ "created": "2013-12-18T21:29:09.453Z"
}
},
{
- "pk": 96,
+ "pk": 114,
"model": "core.usableobject",
"fields": {
- "updated": "2013-12-13T22:19:48.875Z",
- "name": "node23.princeton.vicci.org",
- "created": "2013-12-13T22:19:48.875Z"
- }
-},
-{
- "pk": 97,
- "model": "core.usableobject",
- "fields": {
- "updated": "2013-12-13T22:19:49.635Z",
- "name": "node15.princeton.vicci.org",
- "created": "2013-12-13T22:19:49.634Z"
- }
-},
-{
- "pk": 98,
- "model": "core.usableobject",
- "fields": {
- "updated": "2013-12-13T22:19:50.389Z",
- "name": "node33.princeton.vicci.org",
- "created": "2013-12-13T22:19:50.389Z"
- }
-},
-{
- "pk": 99,
- "model": "core.usableobject",
- "fields": {
- "updated": "2013-12-13T22:19:51.178Z",
- "name": "node1.stanford.vicci.org",
- "created": "2013-12-13T22:19:51.178Z"
- }
-},
-{
- "pk": 100,
- "model": "core.usableobject",
- "fields": {
- "updated": "2013-12-13T22:19:51.938Z",
- "name": "node20.washington.vicci.org",
- "created": "2013-12-13T22:19:51.938Z"
- }
-},
-{
- "pk": 101,
- "model": "core.usableobject",
- "fields": {
- "updated": "2013-12-13T22:19:52.691Z",
+ "updated": "2013-12-18T21:29:10.216Z",
"name": "node12.princeton.vicci.org",
- "created": "2013-12-13T22:19:52.691Z"
+ "created": "2013-12-18T21:29:10.216Z"
}
},
{
- "pk": 102,
+ "pk": 115,
"model": "core.usableobject",
"fields": {
- "updated": "2013-12-13T22:19:53.456Z",
+ "updated": "2013-12-18T21:29:10.975Z",
+ "name": "node20.washington.vicci.org",
+ "created": "2013-12-18T21:29:10.975Z"
+ }
+},
+{
+ "pk": 116,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:11.729Z",
+ "name": "node1.stanford.vicci.org",
+ "created": "2013-12-18T21:29:11.729Z"
+ }
+},
+{
+ "pk": 117,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:12.494Z",
+ "name": "node33.princeton.vicci.org",
+ "created": "2013-12-18T21:29:12.494Z"
+ }
+},
+{
+ "pk": 118,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:13.329Z",
+ "name": "node15.princeton.vicci.org",
+ "created": "2013-12-18T21:29:13.329Z"
+ }
+},
+{
+ "pk": 119,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:14.083Z",
+ "name": "node23.princeton.vicci.org",
+ "created": "2013-12-18T21:29:14.083Z"
+ }
+},
+{
+ "pk": 120,
+ "model": "core.usableobject",
+ "fields": {
+ "updated": "2013-12-18T21:29:14.847Z",
"name": "node10.princeton.vicci.org",
- "created": "2013-12-13T22:19:53.456Z"
+ "created": "2013-12-18T21:29:14.847Z"
}
},
{
- "pk": 103,
+ "pk": 121,
"model": "core.usableobject",
"fields": {
- "updated": "2013-12-13T22:19:54.216Z",
+ "updated": "2013-12-18T21:29:15.609Z",
"name": "node13.princeton.vicci.org",
- "created": "2013-12-13T22:19:54.216Z"
+ "created": "2013-12-18T21:29:15.609Z"
}
},
{
- "pk": 31,
+ "pk": 37,
"model": "core.payment",
"fields": {
- "date": "2013-11-28T03:00:00Z",
- "amount": 0.1176,
- "updated": "2013-12-13T22:19:58.245Z",
- "account": 12,
- "created": "2013-12-13T22:19:58.245Z"
+ "date": "2013-12-03T02:00:00Z",
+ "amount": 0.2968,
+ "updated": "2013-12-18T21:29:19.973Z",
+ "account": 14,
+ "created": "2013-12-18T21:29:19.973Z"
}
},
{
- "pk": 32,
+ "pk": 38,
"model": "core.payment",
"fields": {
- "date": "2013-12-02T03:00:00Z",
- "amount": 14.9968,
- "updated": "2013-12-13T22:19:58.251Z",
- "account": 12,
- "created": "2013-12-13T22:19:58.251Z"
+ "date": "2013-12-09T02:00:00Z",
+ "amount": 21.14,
+ "updated": "2013-12-18T21:29:19.979Z",
+ "account": 14,
+ "created": "2013-12-18T21:29:19.979Z"
}
},
{
- "pk": 33,
+ "pk": 39,
"model": "core.payment",
"fields": {
- "date": "2013-12-09T03:00:00Z",
- "amount": 24.8248,
- "updated": "2013-12-13T22:19:58.259Z",
- "account": 12,
- "created": "2013-12-13T22:19:58.259Z"
+ "date": "2013-12-16T02:00:00Z",
+ "amount": 24.3768,
+ "updated": "2013-12-18T21:29:19.987Z",
+ "account": 14,
+ "created": "2013-12-18T21:29:19.987Z"
}
},
{
- "pk": 34,
+ "pk": 40,
"model": "core.payment",
"fields": {
- "date": "2013-11-28T03:00:00Z",
- "amount": 0.56,
- "updated": "2013-12-13T22:20:05.812Z",
- "account": 13,
- "created": "2013-12-13T22:20:05.812Z"
+ "date": "2013-12-03T02:00:00Z",
+ "amount": 0.3024,
+ "updated": "2013-12-18T21:29:29.154Z",
+ "account": 15,
+ "created": "2013-12-18T21:29:29.153Z"
}
},
{
- "pk": 35,
+ "pk": 41,
"model": "core.payment",
"fields": {
- "date": "2013-12-02T03:00:00Z",
- "amount": 53.9224,
- "updated": "2013-12-13T22:20:05.825Z",
- "account": 13,
- "created": "2013-12-13T22:20:05.825Z"
+ "date": "2013-12-09T02:00:00Z",
+ "amount": 86.5536,
+ "updated": "2013-12-18T21:29:29.166Z",
+ "account": 15,
+ "created": "2013-12-18T21:29:29.166Z"
}
},
{
- "pk": 36,
+ "pk": 42,
"model": "core.payment",
"fields": {
- "date": "2013-12-09T03:00:00Z",
- "amount": 86.436,
- "updated": "2013-12-13T22:20:05.834Z",
- "account": 13,
- "created": "2013-12-13T22:20:05.834Z"
+ "date": "2013-12-16T02:00:00Z",
+ "amount": 96.404,
+ "updated": "2013-12-18T21:29:29.174Z",
+ "account": 15,
+ "created": "2013-12-18T21:29:29.174Z"
}
},
{
- "pk": 58321,
- "model": "core.charge",
+ "pk": 43,
+ "model": "core.payment",
"fields": {
- "updated": "2013-12-13T22:19:58.498Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.734Z",
- "amount": 0.3248,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
- "kind": "besteffort"
+ "date": "2013-12-03T02:00:00Z",
+ "amount": 0.1848,
+ "updated": "2013-12-18T21:29:30.620Z",
+ "account": 16,
+ "created": "2013-12-18T21:29:30.620Z"
}
},
{
- "pk": 58322,
- "model": "core.charge",
+ "pk": 44,
+ "model": "core.payment",
"fields": {
- "updated": "2013-12-13T22:19:58.590Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.744Z",
- "amount": 0.2464,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "besteffort"
+ "date": "2013-12-09T02:00:00Z",
+ "amount": 8.5904,
+ "updated": "2013-12-18T21:29:30.626Z",
+ "account": 16,
+ "created": "2013-12-18T21:29:30.626Z"
}
},
{
- "pk": 58323,
- "model": "core.charge",
+ "pk": 45,
+ "model": "core.payment",
"fields": {
- "updated": "2013-12-13T22:19:58.681Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.752Z",
- "amount": 0.3136,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "besteffort"
+ "date": "2013-12-16T02:00:00Z",
+ "amount": 10.0016,
+ "updated": "2013-12-18T21:29:30.634Z",
+ "account": 16,
+ "created": "2013-12-18T21:29:30.634Z"
}
},
{
- "pk": 58324,
+ "pk": 59761,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.772Z",
+ "updated": "2013-12-18T21:29:20.186Z",
"slice": 4,
- "created": "2013-12-13T22:19:42.760Z",
- "amount": 0.2576,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58325,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.863Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.769Z",
- "amount": 0.2912,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58326,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.971Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.777Z",
- "amount": 0.3136,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58327,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.062Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.785Z",
- "amount": 0.14,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58328,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.154Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.794Z",
- "amount": 0.224,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58329,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.245Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.802Z",
- "amount": 0.224,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58330,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.336Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.810Z",
- "amount": 0.2912,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58331,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.427Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.818Z",
- "amount": 0.1288,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58332,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.518Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.827Z",
+ "created": "2013-12-18T21:29:00.540Z",
"amount": 0.3024,
- "object": 89,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 4.32,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
+ "invoice": 68,
+ "date": "2013-11-18T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58333,
+ "pk": 59762,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:59.609Z",
+ "updated": "2013-12-18T21:29:20.302Z",
"slice": 4,
- "created": "2013-12-13T22:19:42.835Z",
- "amount": 0.1456,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58334,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.720Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.843Z",
- "amount": 0.1792,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58335,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.812Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.852Z",
- "amount": 0.1512,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58336,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.903Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.860Z",
- "amount": 0.168,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58337,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.994Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.868Z",
- "amount": 0.1736,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58338,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.085Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.876Z",
- "amount": 0.2184,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58339,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.176Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.885Z",
- "amount": 0.3192,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58340,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.267Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.893Z",
- "amount": 0.1288,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58341,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.358Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.901Z",
- "amount": 0.224,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58342,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.452Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.910Z",
- "amount": 0.1736,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58343,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.543Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.918Z",
- "amount": 0.224,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58344,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.651Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.926Z",
- "amount": 0.1344,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58345,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.742Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.934Z",
- "amount": 0.1736,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58346,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.833Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.943Z",
- "amount": 0.2576,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58347,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.949Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.951Z",
- "amount": 0.3248,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58348,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.040Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.959Z",
- "amount": 0.3248,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58349,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.131Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.967Z",
- "amount": 0.3136,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58350,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.222Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.976Z",
- "amount": 0.2016,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58351,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.471Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.984Z",
- "amount": 0.3248,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58352,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.761Z",
- "slice": 4,
- "created": "2013-12-13T22:19:42.992Z",
- "amount": 0.2296,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58353,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.852Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.001Z",
- "amount": 0.252,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58354,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.943Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.009Z",
- "amount": 0.2016,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58355,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.042Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.017Z",
- "amount": 0.2744,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58356,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.133Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.025Z",
- "amount": 0.2072,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58357,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.229Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.034Z",
- "amount": 0.2688,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58358,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.320Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.042Z",
- "amount": 0.1288,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58359,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.412Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.050Z",
- "amount": 0.1456,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58360,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.503Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.059Z",
- "amount": 0.336,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58361,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.594Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.067Z",
- "amount": 0.2072,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58362,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.685Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.075Z",
- "amount": 0.1736,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58363,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.776Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.083Z",
- "amount": 0.2576,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58364,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.867Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.092Z",
- "amount": 0.2352,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58365,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.958Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.100Z",
- "amount": 0.2912,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58366,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.049Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.108Z",
- "amount": 0.336,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58367,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.140Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.117Z",
+ "created": "2013-12-18T21:29:00.550Z",
"amount": 0.1176,
- "object": 89,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 1.68,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58368,
+ "pk": 59763,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:03.232Z",
+ "updated": "2013-12-18T21:29:20.409Z",
"slice": 4,
- "created": "2013-12-13T22:19:43.125Z",
- "amount": 0.1456,
- "object": 89,
- "account": 13,
+ "created": "2013-12-18T21:29:00.558Z",
+ "amount": 0.2016,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.08,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
+ "coreHours": 2.88,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58369,
+ "pk": 59764,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:03.323Z",
+ "updated": "2013-12-18T21:29:20.517Z",
"slice": 4,
- "created": "2013-12-13T22:19:43.133Z",
- "amount": 0.1736,
- "object": 89,
- "account": 13,
+ "created": "2013-12-18T21:29:00.567Z",
+ "amount": 0.3024,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.48,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
+ "coreHours": 4.32,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58370,
+ "pk": 59765,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:03.416Z",
+ "updated": "2013-12-18T21:29:20.625Z",
"slice": 4,
- "created": "2013-12-13T22:19:43.141Z",
- "amount": 0.1344,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58371,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.507Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.150Z",
- "amount": 0.1232,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58372,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.598Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.158Z",
- "amount": 0.2632,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58373,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.689Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.166Z",
- "amount": 0.2184,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58374,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.780Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.175Z",
- "amount": 0.224,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58375,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.871Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.183Z",
- "amount": 0.2632,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58376,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.971Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.191Z",
- "amount": 0.3304,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58377,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.062Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.199Z",
- "amount": 0.1456,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58378,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.153Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.208Z",
+ "created": "2013-12-18T21:29:00.575Z",
"amount": 0.1848,
- "object": 89,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.64,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58379,
+ "pk": 59766,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.244Z",
+ "updated": "2013-12-18T21:29:20.732Z",
"slice": 4,
- "created": "2013-12-13T22:19:43.216Z",
- "amount": 0.308,
- "object": 89,
- "account": 13,
+ "created": "2013-12-18T21:29:00.583Z",
+ "amount": 0.3192,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.4,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
+ "coreHours": 4.56,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58380,
+ "pk": 59767,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.335Z",
+ "updated": "2013-12-18T21:29:20.840Z",
"slice": 4,
- "created": "2013-12-13T22:19:43.224Z",
- "amount": 0.3304,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58381,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.426Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.233Z",
- "amount": 0.224,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58382,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.517Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.241Z",
- "amount": 0.2464,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58383,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.608Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.249Z",
- "amount": 0.2296,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58384,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.700Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.257Z",
- "amount": 0.1904,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58385,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.791Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.266Z",
- "amount": 0.2184,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58386,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.882Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.274Z",
- "amount": 0.1456,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58387,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.973Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.282Z",
- "amount": 0.2576,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58388,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.064Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.291Z",
- "amount": 0.3136,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58389,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.162Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.299Z",
- "amount": 0.2408,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58390,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.253Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.307Z",
- "amount": 0.2184,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58391,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.344Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.315Z",
- "amount": 0.2632,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58392,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.435Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.324Z",
- "amount": 0.2968,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58393,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.526Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.332Z",
- "amount": 0.112,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58394,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.617Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.340Z",
- "amount": 0.2128,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58395,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.709Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.349Z",
- "amount": 0.336,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58396,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.800Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.357Z",
- "amount": 0.1232,
- "object": 89,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58397,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.365Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.365Z",
- "amount": 0.2184,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 3.12,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58398,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.374Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.374Z",
- "amount": 0.2856,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 4.08,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58399,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.382Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.382Z",
- "amount": 0.2464,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 3.52,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58400,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.390Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.390Z",
+ "created": "2013-12-18T21:29:00.591Z",
"amount": 0.1512,
- "object": 89,
- "account": 13,
- "state": "pending",
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 2.16,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58401,
+ "pk": 59768,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:43.398Z",
+ "updated": "2013-12-18T21:29:20.948Z",
"slice": 4,
- "created": "2013-12-13T22:19:43.398Z",
- "amount": 0.1176,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 1.68,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
+ "created": "2013-12-18T21:29:00.600Z",
+ "amount": 0.2744,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58402,
+ "pk": 59769,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:43.407Z",
+ "updated": "2013-12-18T21:29:21.055Z",
"slice": 4,
- "created": "2013-12-13T22:19:43.407Z",
- "amount": 0.224,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 3.2,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
+ "created": "2013-12-18T21:29:00.608Z",
+ "amount": 0.3248,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58403,
+ "pk": 59770,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:43.415Z",
+ "updated": "2013-12-18T21:29:21.163Z",
"slice": 4,
- "created": "2013-12-13T22:19:43.415Z",
- "amount": 0.2072,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 2.96,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
+ "created": "2013-12-18T21:29:00.616Z",
+ "amount": 0.14,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58404,
+ "pk": 59771,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:43.423Z",
+ "updated": "2013-12-18T21:29:21.271Z",
"slice": 4,
- "created": "2013-12-13T22:19:43.423Z",
+ "created": "2013-12-18T21:29:00.625Z",
"amount": 0.1288,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 1.84,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58405,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.431Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.431Z",
- "amount": 0.14,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 2.0,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58406,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.440Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.440Z",
- "amount": 0.196,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 2.8,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58407,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.448Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.448Z",
- "amount": 0.112,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 1.6,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58408,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.456Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.456Z",
- "amount": 0.3304,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 4.72,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58409,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.465Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.465Z",
- "amount": 0.3192,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 4.56,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58410,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:43.473Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.473Z",
- "amount": 0.2856,
- "object": 89,
- "account": 13,
- "state": "pending",
- "coreHours": 4.08,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58411,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.482Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.488Z",
- "amount": 0.1568,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58412,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.573Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.498Z",
- "amount": 0.14,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58413,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.664Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.506Z",
- "amount": 0.1568,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58414,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.755Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.514Z",
- "amount": 0.2184,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58415,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.846Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.522Z",
- "amount": 0.1904,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58416,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.955Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.531Z",
- "amount": 0.2968,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58417,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.046Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.539Z",
- "amount": 0.1568,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58418,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.137Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.547Z",
- "amount": 0.2408,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58419,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.228Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.556Z",
- "amount": 0.1512,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58420,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.319Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.564Z",
- "amount": 0.2744,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58421,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.410Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.572Z",
- "amount": 0.3248,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58422,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.501Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.580Z",
- "amount": 0.2128,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58423,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.593Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.589Z",
- "amount": 0.1904,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58424,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.704Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.597Z",
- "amount": 0.1176,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58425,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.795Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.605Z",
- "amount": 0.2912,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58426,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.886Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.614Z",
- "amount": 0.1232,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58427,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.977Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.622Z",
- "amount": 0.1456,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58428,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.068Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.630Z",
- "amount": 0.2856,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58429,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.168Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.639Z",
- "amount": 0.2072,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58430,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.259Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.647Z",
- "amount": 0.1456,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58431,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.350Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.655Z",
- "amount": 0.2688,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58432,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.444Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.663Z",
- "amount": 0.1456,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58433,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.535Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.672Z",
- "amount": 0.3192,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58434,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.642Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.680Z",
- "amount": 0.2856,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58435,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.733Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.688Z",
- "amount": 0.1568,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58436,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.825Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.696Z",
- "amount": 0.224,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58437,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.941Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.705Z",
- "amount": 0.1848,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.64,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58438,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.032Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.713Z",
- "amount": 0.1176,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58439,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.123Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.721Z",
- "amount": 0.3136,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58440,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.214Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.730Z",
- "amount": 0.308,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58441,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.446Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.738Z",
- "amount": 0.2352,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58442,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.752Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.746Z",
- "amount": 0.252,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58443,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.843Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.754Z",
- "amount": 0.2184,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58444,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.934Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.763Z",
- "amount": 0.14,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58445,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.034Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.771Z",
- "amount": 0.1512,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58446,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.125Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.779Z",
- "amount": 0.28,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58447,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.221Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.788Z",
- "amount": 0.2688,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58448,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.312Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.796Z",
- "amount": 0.2576,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58449,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.403Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.804Z",
- "amount": 0.2408,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58450,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.494Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.813Z",
- "amount": 0.2128,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58451,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.585Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.821Z",
- "amount": 0.224,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58452,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.676Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.829Z",
- "amount": 0.1904,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58453,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.768Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.837Z",
- "amount": 0.2968,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58454,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.859Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.846Z",
- "amount": 0.2968,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58455,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.950Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.854Z",
- "amount": 0.28,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58456,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.041Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.862Z",
- "amount": 0.3248,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58457,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.132Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.871Z",
- "amount": 0.2464,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58458,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.223Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.879Z",
- "amount": 0.1624,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.32,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58459,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.314Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.887Z",
- "amount": 0.1176,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58460,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.406Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.895Z",
- "amount": 0.2968,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58461,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.498Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.904Z",
- "amount": 0.2688,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58462,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.589Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.912Z",
- "amount": 0.1904,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58463,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.681Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.920Z",
- "amount": 0.28,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58464,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.772Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.929Z",
- "amount": 0.1568,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58465,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.863Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.937Z",
- "amount": 0.308,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58466,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.962Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.945Z",
- "amount": 0.2128,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58467,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.053Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.953Z",
- "amount": 0.2296,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58468,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.144Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.962Z",
- "amount": 0.2912,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58469,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.236Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.970Z",
- "amount": 0.3304,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58470,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.327Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.978Z",
- "amount": 0.2576,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58471,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.418Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.986Z",
- "amount": 0.1176,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58472,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.509Z",
- "slice": 4,
- "created": "2013-12-13T22:19:43.995Z",
- "amount": 0.1736,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58473,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.600Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.003Z",
- "amount": 0.1568,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58474,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.691Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.011Z",
- "amount": 0.196,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58475,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.782Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.020Z",
- "amount": 0.1176,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58476,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.874Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.028Z",
- "amount": 0.1736,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58477,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.965Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.036Z",
- "amount": 0.1344,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58478,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.056Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.044Z",
- "amount": 0.2296,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58479,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.154Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.053Z",
- "amount": 0.2296,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58480,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.245Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.061Z",
- "amount": 0.2912,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58481,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.336Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.069Z",
- "amount": 0.112,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58482,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.427Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.078Z",
- "amount": 0.1344,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58483,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.518Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.086Z",
- "amount": 0.2688,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58484,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.609Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.094Z",
- "amount": 0.3248,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58485,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.700Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.102Z",
- "amount": 0.3192,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58486,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.792Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.111Z",
- "amount": 0.2296,
- "object": 90,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58487,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.119Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.119Z",
- "amount": 0.14,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 2.0,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58488,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.127Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.127Z",
- "amount": 0.224,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 3.2,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58489,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.136Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.136Z",
- "amount": 0.224,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 3.2,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58490,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.144Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.144Z",
- "amount": 0.112,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 1.6,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58491,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.152Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.152Z",
- "amount": 0.252,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 3.6,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58492,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.160Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.160Z",
- "amount": 0.2408,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 3.44,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58493,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.169Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.169Z",
- "amount": 0.308,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 4.4,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58494,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.177Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.177Z",
- "amount": 0.2744,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 3.92,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58495,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.185Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.185Z",
- "amount": 0.2744,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 3.92,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58496,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.194Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.193Z",
- "amount": 0.1848,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 2.64,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58497,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.202Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.202Z",
- "amount": 0.28,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 4.0,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58498,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.210Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.210Z",
- "amount": 0.1904,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 2.72,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58499,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.218Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.218Z",
- "amount": 0.1792,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 2.56,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58500,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.227Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.227Z",
- "amount": 0.1904,
- "object": 90,
- "account": 13,
- "state": "pending",
- "coreHours": 2.72,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58501,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.473Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.242Z",
- "amount": 0.308,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58502,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.565Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.252Z",
- "amount": 0.28,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58503,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.656Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.260Z",
- "amount": 0.2632,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58504,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.747Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.268Z",
- "amount": 0.168,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58505,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.838Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.276Z",
- "amount": 0.2744,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58506,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.929Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.285Z",
- "amount": 0.1736,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58507,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.038Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.293Z",
- "amount": 0.1344,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58508,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.129Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.301Z",
- "amount": 0.1288,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 1.84,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58509,
+ "pk": 59772,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:59.220Z",
+ "updated": "2013-12-18T21:29:21.378Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.310Z",
- "amount": 0.2744,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58510,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.311Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.318Z",
+ "created": "2013-12-18T21:29:00.633Z",
"amount": 0.336,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 4.8,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58511,
+ "pk": 59773,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:59.402Z",
+ "updated": "2013-12-18T21:29:21.486Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.326Z",
+ "created": "2013-12-18T21:29:00.641Z",
+ "amount": 0.3192,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59774,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.594Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.650Z",
+ "amount": 0.2184,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59775,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.702Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.658Z",
+ "amount": 0.252,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59776,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.809Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.666Z",
+ "amount": 0.1232,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59777,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.917Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.674Z",
"amount": 0.1624,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.32,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58512,
+ "pk": 59778,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:59.493Z",
+ "updated": "2013-12-18T21:29:22.025Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.334Z",
- "amount": 0.1848,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.64,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58513,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.584Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.343Z",
+ "created": "2013-12-18T21:29:00.683Z",
"amount": 0.1904,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.72,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58514,
+ "pk": 59779,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:59.696Z",
+ "updated": "2013-12-18T21:29:22.132Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.351Z",
- "amount": 0.14,
- "object": 91,
- "account": 13,
+ "created": "2013-12-18T21:29:00.691Z",
+ "amount": 0.1624,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.0,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
+ "coreHours": 2.32,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58515,
+ "pk": 59780,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:59.787Z",
+ "updated": "2013-12-18T21:29:22.248Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.359Z",
+ "created": "2013-12-18T21:29:00.699Z",
+ "amount": 0.2912,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59781,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.356Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.708Z",
+ "amount": 0.2072,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59782,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.464Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.716Z",
+ "amount": 0.1456,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59783,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.613Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.724Z",
+ "amount": 0.2408,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59784,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.721Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.732Z",
+ "amount": 0.3024,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59785,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.828Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.741Z",
"amount": 0.1792,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.56,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58516,
+ "pk": 59786,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:59.878Z",
+ "updated": "2013-12-18T21:29:22.936Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.368Z",
- "amount": 0.224,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58517,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.969Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.376Z",
- "amount": 0.2688,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58518,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.060Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.384Z",
- "amount": 0.1176,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58519,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.159Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.392Z",
- "amount": 0.2016,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58520,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.251Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.401Z",
- "amount": 0.2072,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58521,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.342Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.409Z",
- "amount": 0.3248,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58522,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.435Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.417Z",
- "amount": 0.1232,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58523,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.526Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.426Z",
- "amount": 0.336,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58524,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.634Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.434Z",
+ "created": "2013-12-18T21:29:00.749Z",
"amount": 0.1736,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.48,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58525,
+ "pk": 59787,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:00.725Z",
+ "updated": "2013-12-18T21:29:23.043Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.442Z",
- "amount": 0.168,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58526,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.816Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.450Z",
- "amount": 0.2968,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58527,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.932Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.459Z",
- "amount": 0.1288,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58528,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.023Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.467Z",
- "amount": 0.1736,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58529,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.114Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.475Z",
- "amount": 0.1456,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58530,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.206Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.484Z",
- "amount": 0.28,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58531,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.404Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.492Z",
- "amount": 0.2632,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58532,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.744Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.500Z",
- "amount": 0.3304,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58533,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.835Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.508Z",
- "amount": 0.112,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58534,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.926Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.517Z",
- "amount": 0.112,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58535,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.026Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.525Z",
- "amount": 0.2688,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58536,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.117Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.533Z",
- "amount": 0.3024,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58537,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.208Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.541Z",
- "amount": 0.2576,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58538,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.304Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.550Z",
- "amount": 0.252,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58539,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.395Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.558Z",
- "amount": 0.1904,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58540,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.486Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.566Z",
- "amount": 0.2912,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58541,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.577Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.575Z",
- "amount": 0.1792,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58542,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.668Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.583Z",
- "amount": 0.2856,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58543,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.759Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.591Z",
- "amount": 0.2184,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58544,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.851Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.599Z",
- "amount": 0.1176,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58545,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.942Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.608Z",
- "amount": 0.2912,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58546,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.033Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.616Z",
+ "created": "2013-12-18T21:29:00.757Z",
"amount": 0.1512,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.16,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58547,
+ "pk": 59788,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:03.124Z",
+ "updated": "2013-12-18T21:29:23.151Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.624Z",
- "amount": 0.1232,
- "object": 91,
- "account": 13,
+ "created": "2013-12-18T21:29:00.766Z",
+ "amount": 0.1288,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
- "coreHours": 1.76,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
+ "coreHours": 1.84,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58548,
+ "pk": 59789,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:03.215Z",
+ "updated": "2013-12-18T21:29:23.259Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.633Z",
- "amount": 0.14,
- "object": 91,
- "account": 13,
+ "created": "2013-12-18T21:29:00.774Z",
+ "amount": 0.2408,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.0,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
+ "coreHours": 3.44,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58549,
+ "pk": 59790,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:03.306Z",
+ "updated": "2013-12-18T21:29:23.367Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.641Z",
- "amount": 0.1176,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58550,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.397Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.649Z",
- "amount": 0.1176,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58551,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.490Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.657Z",
- "amount": 0.2016,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58552,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.581Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.666Z",
- "amount": 0.1624,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.32,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58553,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.672Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.674Z",
- "amount": 0.2296,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58554,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.763Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.682Z",
- "amount": 0.1176,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58555,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.855Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.690Z",
- "amount": 0.2016,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58556,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.954Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.699Z",
- "amount": 0.2296,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58557,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.045Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.707Z",
- "amount": 0.2856,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58558,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.136Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.715Z",
- "amount": 0.2744,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58559,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.227Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.724Z",
+ "created": "2013-12-18T21:29:00.782Z",
"amount": 0.1344,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 1.92,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58560,
+ "pk": 59791,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.319Z",
+ "updated": "2013-12-18T21:29:23.474Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.732Z",
- "amount": 0.28,
- "object": 91,
- "account": 13,
+ "created": "2013-12-18T21:29:00.790Z",
+ "amount": 0.2184,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.0,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
+ "coreHours": 3.12,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58561,
+ "pk": 59792,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.410Z",
+ "updated": "2013-12-18T21:29:23.582Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.740Z",
- "amount": 0.3136,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58562,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.501Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.749Z",
- "amount": 0.1456,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58563,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.592Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.757Z",
- "amount": 0.2744,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58564,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.683Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.765Z",
- "amount": 0.3024,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58565,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.774Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.773Z",
- "amount": 0.2576,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58566,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.865Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.782Z",
- "amount": 0.2072,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58567,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.956Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.790Z",
- "amount": 0.1904,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58568,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.048Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.798Z",
- "amount": 0.1512,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58569,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.145Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.807Z",
- "amount": 0.2296,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58570,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.236Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.815Z",
- "amount": 0.2128,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58571,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.327Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.823Z",
- "amount": 0.1568,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58572,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.419Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.831Z",
- "amount": 0.2296,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58573,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.510Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.840Z",
- "amount": 0.224,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58574,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.601Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.848Z",
- "amount": 0.196,
- "object": 91,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58575,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.692Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.856Z",
+ "created": "2013-12-18T21:29:00.799Z",
"amount": 0.308,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 4.4,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58576,
+ "pk": 59793,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:05.783Z",
+ "updated": "2013-12-18T21:29:23.690Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.865Z",
+ "created": "2013-12-18T21:29:00.807Z",
+ "amount": 0.2968,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59794,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.797Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.815Z",
+ "amount": 0.2352,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59795,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.905Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.823Z",
+ "amount": 0.1904,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59796,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.013Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.832Z",
+ "amount": 0.336,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59797,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.120Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.840Z",
+ "amount": 0.1176,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59798,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.228Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.848Z",
+ "amount": 0.2968,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59799,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.336Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.856Z",
+ "amount": 0.1288,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59800,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.443Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.865Z",
+ "amount": 0.2016,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59801,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.559Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.873Z",
+ "amount": 0.1288,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59802,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.667Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.881Z",
+ "amount": 0.2744,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59803,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.775Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.890Z",
+ "amount": 0.2912,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59804,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.883Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.898Z",
+ "amount": 0.168,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59805,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.990Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.906Z",
+ "amount": 0.3304,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59806,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.098Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.915Z",
+ "amount": 0.3136,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59807,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.206Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.923Z",
+ "amount": 0.168,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59808,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.313Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.931Z",
+ "amount": 0.1176,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59809,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.421Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.939Z",
+ "amount": 0.2576,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59810,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.529Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.948Z",
+ "amount": 0.14,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59811,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.637Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.956Z",
+ "amount": 0.2576,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59812,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.744Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.964Z",
"amount": 0.2128,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "invoiced",
"coreHours": 3.04,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58577,
+ "pk": 59813,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.873Z",
+ "updated": "2013-12-18T21:29:25.852Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.873Z",
- "amount": 0.2408,
- "object": 91,
- "account": 13,
- "state": "pending",
- "coreHours": 3.44,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
+ "created": "2013-12-18T21:29:00.973Z",
+ "amount": 0.2576,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58578,
+ "pk": 59814,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.881Z",
+ "updated": "2013-12-18T21:29:25.959Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.881Z",
+ "created": "2013-12-18T21:29:00.981Z",
+ "amount": 0.2744,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59815,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.067Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.989Z",
+ "amount": 0.2744,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59816,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.175Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:00.997Z",
+ "amount": 0.2912,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59817,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.283Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.006Z",
+ "amount": 0.14,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59818,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.390Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.014Z",
+ "amount": 0.1176,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59819,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.498Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.022Z",
+ "amount": 0.2744,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59820,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.606Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.031Z",
+ "amount": 0.3304,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59821,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.713Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.039Z",
+ "amount": 0.336,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59822,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.829Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.047Z",
+ "amount": 0.2912,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59823,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.937Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.055Z",
+ "amount": 0.2128,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59824,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.045Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.064Z",
+ "amount": 0.1848,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59825,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.152Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.072Z",
"amount": 0.2632,
- "object": 91,
- "account": 13,
- "state": "pending",
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 3.76,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58579,
+ "pk": 59826,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.890Z",
+ "updated": "2013-12-18T21:29:27.260Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.890Z",
- "amount": 0.3192,
- "object": 91,
- "account": 13,
- "state": "pending",
- "coreHours": 4.56,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
+ "created": "2013-12-18T21:29:01.080Z",
+ "amount": 0.1288,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58580,
+ "pk": 59827,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.898Z",
+ "updated": "2013-12-18T21:29:27.368Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.898Z",
- "amount": 0.2352,
- "object": 91,
- "account": 13,
- "state": "pending",
- "coreHours": 3.36,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
+ "created": "2013-12-18T21:29:01.088Z",
+ "amount": 0.2744,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58581,
+ "pk": 59828,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.906Z",
+ "updated": "2013-12-18T21:29:27.475Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.906Z",
+ "created": "2013-12-18T21:29:01.097Z",
+ "amount": 0.1848,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59829,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.641Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.105Z",
"amount": 0.1456,
- "object": 91,
- "account": 13,
- "state": "pending",
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 2.08,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58582,
+ "pk": 59830,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.914Z",
+ "updated": "2013-12-18T21:29:27.749Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.914Z",
- "amount": 0.3136,
- "object": 91,
- "account": 13,
- "state": "pending",
- "coreHours": 4.48,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58583,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.923Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.923Z",
- "amount": 0.1736,
- "object": 91,
- "account": 13,
- "state": "pending",
- "coreHours": 2.48,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58584,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.931Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.931Z",
- "amount": 0.2352,
- "object": 91,
- "account": 13,
- "state": "pending",
- "coreHours": 3.36,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58585,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:44.939Z",
- "slice": 4,
- "created": "2013-12-13T22:19:44.939Z",
+ "created": "2013-12-18T21:29:01.113Z",
"amount": 0.2296,
- "object": 91,
- "account": 13,
- "state": "pending",
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 3.28,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58586,
+ "pk": 59831,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.947Z",
+ "updated": "2013-12-18T21:29:27.856Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.947Z",
- "amount": 0.1456,
- "object": 91,
- "account": 13,
- "state": "pending",
- "coreHours": 2.08,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
+ "created": "2013-12-18T21:29:01.122Z",
+ "amount": 0.3024,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58587,
+ "pk": 59832,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.957Z",
+ "updated": "2013-12-18T21:29:27.964Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.957Z",
+ "created": "2013-12-18T21:29:01.130Z",
+ "amount": 0.2912,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59833,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.072Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.138Z",
+ "amount": 0.2856,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59834,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.180Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.147Z",
+ "amount": 0.308,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59835,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.287Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.155Z",
+ "amount": 0.1848,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59836,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.395Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.163Z",
"amount": 0.2688,
- "object": 91,
- "account": 13,
- "state": "pending",
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 3.84,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58588,
+ "pk": 59837,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.966Z",
+ "updated": "2013-12-18T21:29:28.503Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.966Z",
- "amount": 0.224,
- "object": 91,
- "account": 13,
+ "created": "2013-12-18T21:29:01.171Z",
+ "amount": 0.1344,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59838,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.610Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.180Z",
+ "amount": 0.2856,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59839,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.718Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.188Z",
+ "amount": 0.3024,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59840,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.826Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.196Z",
+ "amount": 0.308,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59841,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.933Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.205Z",
+ "amount": 0.308,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59842,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.041Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.213Z",
+ "amount": 0.2576,
+ "object": 104,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59843,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:01.221Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.221Z",
+ "amount": 0.196,
+ "object": 104,
+ "account": 15,
"state": "pending",
- "coreHours": 3.2,
+ "coreHours": 2.8,
"invoice": null,
- "date": "2013-12-12T22:00:00Z",
+ "date": "2013-12-16T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58589,
+ "pk": 59844,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.974Z",
+ "updated": "2013-12-18T21:29:01.230Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.974Z",
+ "created": "2013-12-18T21:29:01.229Z",
+ "amount": 0.168,
+ "object": 104,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 2.4,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59845,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:01.238Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.238Z",
+ "amount": 0.2576,
+ "object": 104,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.68,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59846,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:01.246Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.246Z",
+ "amount": 0.168,
+ "object": 104,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 2.4,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59847,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:01.254Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.254Z",
"amount": 0.3248,
- "object": 91,
- "account": 13,
+ "object": 104,
+ "account": 15,
"state": "pending",
"coreHours": 4.64,
"invoice": null,
- "date": "2013-12-13T06:00:00Z",
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58590,
+ "pk": 59848,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:44.982Z",
+ "updated": "2013-12-18T21:29:01.263Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.982Z",
- "amount": 0.2352,
- "object": 91,
- "account": 13,
+ "created": "2013-12-18T21:29:01.263Z",
+ "amount": 0.28,
+ "object": 104,
+ "account": 15,
"state": "pending",
- "coreHours": 3.36,
+ "coreHours": 4.0,
"invoice": null,
- "date": "2013-12-13T14:00:00Z",
+ "date": "2013-12-17T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58591,
+ "pk": 59849,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.465Z",
+ "updated": "2013-12-18T21:29:01.271Z",
"slice": 4,
- "created": "2013-12-13T22:19:44.997Z",
- "amount": 0.308,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.271Z",
+ "amount": 0.28,
+ "object": 104,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.0,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59850,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:01.279Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.279Z",
+ "amount": 0.3304,
+ "object": 104,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.72,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59851,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.202Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.294Z",
+ "amount": 0.1456,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.4,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
+ "coreHours": 2.08,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58592,
+ "pk": 59852,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.556Z",
+ "updated": "2013-12-18T21:29:20.310Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.007Z",
+ "created": "2013-12-18T21:29:01.304Z",
+ "amount": 0.2352,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59853,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.417Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.312Z",
+ "amount": 0.3192,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59854,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.525Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.320Z",
+ "amount": 0.2464,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59855,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.633Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.329Z",
+ "amount": 0.2184,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59856,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.741Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.337Z",
"amount": 0.168,
- "object": 92,
- "account": 13,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.4,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58593,
+ "pk": 59857,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.648Z",
+ "updated": "2013-12-18T21:29:20.848Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.015Z",
- "amount": 0.252,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.345Z",
+ "amount": 0.1792,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.6,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
+ "coreHours": 2.56,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58594,
+ "pk": 59858,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.739Z",
+ "updated": "2013-12-18T21:29:20.956Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.024Z",
- "amount": 0.28,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58595,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.830Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.032Z",
- "amount": 0.2576,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58596,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.921Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.040Z",
- "amount": 0.1736,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58597,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.029Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.049Z",
- "amount": 0.1512,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58598,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.120Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.057Z",
- "amount": 0.112,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58599,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.212Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.065Z",
- "amount": 0.2464,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58600,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.303Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.073Z",
- "amount": 0.2128,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58601,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.394Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.082Z",
- "amount": 0.3024,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58602,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.485Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.090Z",
- "amount": 0.308,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58603,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.576Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.098Z",
- "amount": 0.3304,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58604,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.675Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.106Z",
- "amount": 0.2688,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58605,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.778Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.115Z",
- "amount": 0.3192,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58606,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.870Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.123Z",
- "amount": 0.2352,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58607,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.961Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.131Z",
- "amount": 0.2856,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58608,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.052Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.140Z",
- "amount": 0.2408,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58609,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.151Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.148Z",
- "amount": 0.2128,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58610,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.242Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.156Z",
- "amount": 0.2464,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58611,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.333Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.164Z",
- "amount": 0.14,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58612,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.427Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.173Z",
- "amount": 0.1568,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58613,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.518Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.181Z",
- "amount": 0.2296,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58614,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.626Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.189Z",
- "amount": 0.1232,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58615,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.717Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.198Z",
- "amount": 0.224,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58616,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.808Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.206Z",
- "amount": 0.2856,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58617,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.924Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.214Z",
- "amount": 0.336,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58618,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.015Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.222Z",
- "amount": 0.3192,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58619,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.106Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.231Z",
- "amount": 0.252,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58620,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.197Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.239Z",
- "amount": 0.1512,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58621,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.363Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.247Z",
- "amount": 0.14,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58622,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.736Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.256Z",
- "amount": 0.14,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58623,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.827Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.264Z",
- "amount": 0.1288,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58624,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.918Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.272Z",
- "amount": 0.1288,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58625,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.017Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.280Z",
- "amount": 0.2296,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58626,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.108Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.289Z",
- "amount": 0.14,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58627,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.199Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.297Z",
- "amount": 0.2464,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58628,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.296Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.305Z",
- "amount": 0.1904,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58629,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.387Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.314Z",
- "amount": 0.2408,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58630,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.478Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.322Z",
- "amount": 0.1736,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58631,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.569Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.330Z",
- "amount": 0.1512,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58632,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.660Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.339Z",
+ "created": "2013-12-18T21:29:01.353Z",
"amount": 0.2912,
- "object": 92,
- "account": 13,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
"coreHours": 4.16,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58633,
+ "pk": 59859,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.751Z",
+ "updated": "2013-12-18T21:29:21.064Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.347Z",
- "amount": 0.1512,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58634,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.842Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.355Z",
- "amount": 0.2632,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58635,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.933Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.363Z",
- "amount": 0.2968,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58636,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.025Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.372Z",
- "amount": 0.2352,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58637,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.116Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.380Z",
- "amount": 0.252,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58638,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.207Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.388Z",
- "amount": 0.2072,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58639,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.298Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.396Z",
- "amount": 0.224,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58640,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.389Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.405Z",
- "amount": 0.2408,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58641,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.482Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.413Z",
- "amount": 0.1512,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58642,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.573Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.421Z",
- "amount": 0.1736,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58643,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.664Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.430Z",
- "amount": 0.3136,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58644,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.755Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.438Z",
+ "created": "2013-12-18T21:29:01.362Z",
"amount": 0.2184,
- "object": 92,
- "account": 13,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
"coreHours": 3.12,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58645,
+ "pk": 59860,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:03.838Z",
+ "updated": "2013-12-18T21:29:21.171Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.446Z",
- "amount": 0.336,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58646,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.937Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.454Z",
+ "created": "2013-12-18T21:29:01.370Z",
"amount": 0.14,
- "object": 92,
- "account": 13,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.0,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58647,
+ "pk": 59861,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.028Z",
+ "updated": "2013-12-18T21:29:21.279Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.463Z",
- "amount": 0.1288,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.378Z",
+ "amount": 0.3248,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 1.84,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
+ "coreHours": 4.64,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58648,
+ "pk": 59862,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.120Z",
+ "updated": "2013-12-18T21:29:21.387Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.471Z",
- "amount": 0.1624,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.387Z",
+ "amount": 0.1904,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.32,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
+ "coreHours": 2.72,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58649,
+ "pk": 59863,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.211Z",
+ "updated": "2013-12-18T21:29:21.494Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.479Z",
- "amount": 0.196,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.395Z",
+ "amount": 0.2632,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.8,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
+ "coreHours": 3.76,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58650,
+ "pk": 59864,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.302Z",
+ "updated": "2013-12-18T21:29:21.602Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.487Z",
- "amount": 0.2576,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.403Z",
+ "amount": 0.336,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.68,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
+ "coreHours": 4.8,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58651,
+ "pk": 59865,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.393Z",
+ "updated": "2013-12-18T21:29:21.710Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.496Z",
- "amount": 0.308,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.412Z",
+ "amount": 0.2688,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.4,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
+ "coreHours": 3.84,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58652,
+ "pk": 59866,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.484Z",
+ "updated": "2013-12-18T21:29:21.818Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.504Z",
- "amount": 0.28,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.420Z",
+ "amount": 0.2352,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.0,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
+ "coreHours": 3.36,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58653,
+ "pk": 59867,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:04.575Z",
+ "updated": "2013-12-18T21:29:21.925Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.534Z",
- "amount": 0.2464,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58654,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.666Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.554Z",
- "amount": 0.2464,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58655,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.757Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.562Z",
- "amount": 0.2464,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58656,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.849Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.570Z",
- "amount": 0.2184,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58657,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.940Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.579Z",
- "amount": 0.196,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58658,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.039Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.587Z",
- "amount": 0.3024,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58659,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.137Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.595Z",
- "amount": 0.3192,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58660,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.228Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.603Z",
- "amount": 0.196,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58661,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.319Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.612Z",
- "amount": 0.1624,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.32,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58662,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.410Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.620Z",
- "amount": 0.2072,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58663,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.501Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.628Z",
- "amount": 0.3304,
- "object": 92,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58664,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.593Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.637Z",
+ "created": "2013-12-18T21:29:01.428Z",
"amount": 0.2128,
- "object": 92,
- "account": 13,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
"coreHours": 3.04,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58665,
+ "pk": 59868,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:05.684Z",
+ "updated": "2013-12-18T21:29:22.033Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.645Z",
- "amount": 0.252,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.436Z",
+ "amount": 0.196,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.6,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
+ "coreHours": 2.8,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58666,
+ "pk": 59869,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:05.775Z",
+ "updated": "2013-12-18T21:29:22.141Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.653Z",
- "amount": 0.3192,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:01.445Z",
+ "amount": 0.1792,
+ "object": 105,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.56,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
+ "coreHours": 2.56,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58667,
+ "pk": 59870,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.662Z",
+ "updated": "2013-12-18T21:29:22.257Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.661Z",
+ "created": "2013-12-18T21:29:01.453Z",
+ "amount": 0.1288,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59871,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.364Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.461Z",
+ "amount": 0.1736,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59872,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.472Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.470Z",
"amount": 0.112,
- "object": 92,
- "account": 13,
- "state": "pending",
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 1.6,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58668,
+ "pk": 59873,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.670Z",
+ "updated": "2013-12-18T21:29:22.621Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.670Z",
+ "created": "2013-12-18T21:29:01.478Z",
+ "amount": 0.2128,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59874,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.729Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.486Z",
+ "amount": 0.308,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59875,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.836Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.494Z",
+ "amount": 0.1512,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59876,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.944Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.503Z",
+ "amount": 0.112,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59877,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.052Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.511Z",
+ "amount": 0.308,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59878,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.160Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.519Z",
"amount": 0.2072,
- "object": 92,
- "account": 13,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59879,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.267Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.528Z",
+ "amount": 0.28,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59880,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.375Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.536Z",
+ "amount": 0.1792,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59881,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.483Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.544Z",
+ "amount": 0.224,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59882,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.590Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.552Z",
+ "amount": 0.1568,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59883,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.698Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.561Z",
+ "amount": 0.2968,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59884,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.806Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.569Z",
+ "amount": 0.1232,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59885,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.913Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.577Z",
+ "amount": 0.2352,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59886,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.021Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.586Z",
+ "amount": 0.1736,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59887,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.129Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.594Z",
+ "amount": 0.196,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59888,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.236Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.602Z",
+ "amount": 0.1344,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59889,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.344Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.610Z",
+ "amount": 0.1904,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59890,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.452Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.619Z",
+ "amount": 0.2352,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59891,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.568Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.627Z",
+ "amount": 0.2072,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59892,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.676Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.635Z",
+ "amount": 0.2968,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59893,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.783Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.644Z",
+ "amount": 0.3136,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59894,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.891Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.652Z",
+ "amount": 0.1288,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59895,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.999Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.660Z",
+ "amount": 0.1568,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59896,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.106Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.669Z",
+ "amount": 0.1792,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59897,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.214Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.677Z",
+ "amount": 0.3024,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59898,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.322Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.685Z",
+ "amount": 0.2856,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59899,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.429Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.693Z",
+ "amount": 0.2912,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59900,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.537Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.702Z",
+ "amount": 0.1288,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59901,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.645Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.710Z",
+ "amount": 0.3136,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59902,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.752Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.718Z",
+ "amount": 0.3248,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59903,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.860Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.727Z",
+ "amount": 0.3024,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59904,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.968Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.735Z",
+ "amount": 0.14,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59905,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.075Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.743Z",
+ "amount": 0.3304,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59906,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.183Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.751Z",
+ "amount": 0.2744,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59907,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.291Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.760Z",
+ "amount": 0.2632,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59908,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.399Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.768Z",
+ "amount": 0.2408,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59909,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.506Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.776Z",
+ "amount": 0.1624,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59910,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.614Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.784Z",
+ "amount": 0.2968,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59911,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.722Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.793Z",
+ "amount": 0.2016,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59912,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.838Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.801Z",
+ "amount": 0.2296,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59913,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.945Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.809Z",
+ "amount": 0.2128,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59914,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.053Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.818Z",
+ "amount": 0.112,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59915,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.161Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.826Z",
+ "amount": 0.168,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59916,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.268Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.834Z",
+ "amount": 0.168,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59917,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.376Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.842Z",
+ "amount": 0.196,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59918,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.484Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.851Z",
+ "amount": 0.2464,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59919,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.649Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.859Z",
+ "amount": 0.112,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59920,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.757Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.867Z",
+ "amount": 0.1792,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59921,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.865Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.875Z",
+ "amount": 0.308,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59922,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.972Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.884Z",
+ "amount": 0.1176,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59923,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.080Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.892Z",
+ "amount": 0.2016,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59924,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.188Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.900Z",
+ "amount": 0.1512,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59925,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.296Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.909Z",
+ "amount": 0.2352,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59926,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.403Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.917Z",
+ "amount": 0.308,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59927,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.511Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.925Z",
+ "amount": 0.2856,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59928,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.619Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.934Z",
+ "amount": 0.1792,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59929,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.726Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.942Z",
+ "amount": 0.2856,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59930,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.834Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.950Z",
+ "amount": 0.1456,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59931,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.942Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:01.980Z",
+ "amount": 0.3136,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59932,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.049Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.021Z",
+ "amount": 0.1232,
+ "object": 105,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59933,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:02.066Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.066Z",
+ "amount": 0.2072,
+ "object": 105,
+ "account": 15,
"state": "pending",
"coreHours": 2.96,
"invoice": null,
- "date": "2013-12-09T14:00:00Z",
+ "date": "2013-12-16T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58669,
+ "pk": 59934,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.678Z",
+ "updated": "2013-12-18T21:29:02.116Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.678Z",
+ "created": "2013-12-18T21:29:02.116Z",
+ "amount": 0.2408,
+ "object": 105,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.44,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59935,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:02.124Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.124Z",
+ "amount": 0.2352,
+ "object": 105,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.36,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59936,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:02.132Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.132Z",
+ "amount": 0.2576,
+ "object": 105,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.68,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59937,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:02.141Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.141Z",
+ "amount": 0.2744,
+ "object": 105,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.92,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59938,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:02.149Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.149Z",
+ "amount": 0.14,
+ "object": 105,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 2.0,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59939,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:02.157Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.157Z",
+ "amount": 0.2688,
+ "object": 105,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.84,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59940,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:02.165Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.165Z",
+ "amount": 0.3192,
+ "object": 105,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.56,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59941,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.210Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.205Z",
+ "amount": 0.1624,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59942,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.318Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.246Z",
+ "amount": 0.196,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59943,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.426Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.273Z",
+ "amount": 0.3136,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59944,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.533Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.323Z",
+ "amount": 0.1288,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59945,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.641Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.348Z",
+ "amount": 0.28,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59946,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.749Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.379Z",
+ "amount": 0.2688,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59947,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.857Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.430Z",
+ "amount": 0.1792,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59948,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.964Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.471Z",
+ "amount": 0.1736,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59949,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.072Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.497Z",
+ "amount": 0.1176,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59950,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.180Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.505Z",
+ "amount": 0.2576,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59951,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.287Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.513Z",
+ "amount": 0.1904,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59952,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.395Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.521Z",
+ "amount": 0.3136,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59953,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.503Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.530Z",
+ "amount": 0.3192,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59954,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.610Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.538Z",
+ "amount": 0.3248,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59955,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.718Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.546Z",
+ "amount": 0.3304,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59956,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.826Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.555Z",
+ "amount": 0.2744,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59957,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.933Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.563Z",
+ "amount": 0.168,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59958,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.041Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.571Z",
+ "amount": 0.28,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59959,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.149Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.579Z",
+ "amount": 0.14,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59960,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.265Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.588Z",
+ "amount": 0.3248,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59961,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.372Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.596Z",
"amount": 0.2464,
- "object": 92,
- "account": 13,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59962,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.480Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.604Z",
+ "amount": 0.1232,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59963,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.629Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.613Z",
+ "amount": 0.1792,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59964,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.737Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.621Z",
+ "amount": 0.336,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59965,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.845Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.629Z",
+ "amount": 0.2632,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59966,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.952Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.638Z",
+ "amount": 0.168,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59967,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.060Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.646Z",
+ "amount": 0.3192,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59968,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.168Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.654Z",
+ "amount": 0.3304,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59969,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.275Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.662Z",
+ "amount": 0.2744,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59970,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.383Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.671Z",
+ "amount": 0.2016,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59971,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.491Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.679Z",
+ "amount": 0.196,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59972,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.598Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.687Z",
+ "amount": 0.3136,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59973,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.706Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.695Z",
+ "amount": 0.3192,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59974,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.814Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.704Z",
+ "amount": 0.3192,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59975,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.922Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.712Z",
+ "amount": 0.2464,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59976,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.029Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.720Z",
+ "amount": 0.2912,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59977,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.137Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.729Z",
+ "amount": 0.2016,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59978,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.245Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.737Z",
+ "amount": 0.2128,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59979,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.352Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.745Z",
+ "amount": 0.1288,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59980,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.460Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.753Z",
+ "amount": 0.2408,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59981,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.576Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.762Z",
+ "amount": 0.2856,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59982,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.684Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.770Z",
+ "amount": 0.2688,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59983,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.791Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.778Z",
+ "amount": 0.2072,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59984,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.899Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.787Z",
+ "amount": 0.224,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59985,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.007Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.795Z",
+ "amount": 0.3304,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59986,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.114Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.803Z",
+ "amount": 0.224,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59987,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.222Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.811Z",
+ "amount": 0.2576,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59988,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.330Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.820Z",
+ "amount": 0.2352,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59989,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.438Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.828Z",
+ "amount": 0.308,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59990,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.545Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.836Z",
+ "amount": 0.3136,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59991,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.653Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.845Z",
+ "amount": 0.224,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59992,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.761Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.853Z",
+ "amount": 0.308,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59993,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.868Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.861Z",
+ "amount": 0.2688,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59994,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.976Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.869Z",
+ "amount": 0.2464,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59995,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.084Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.878Z",
+ "amount": 0.3024,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59996,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.192Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.886Z",
+ "amount": 0.1456,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59997,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.299Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.894Z",
+ "amount": 0.2968,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59998,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.407Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.902Z",
+ "amount": 0.1344,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 59999,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.514Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.911Z",
+ "amount": 0.3192,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60000,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.622Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.919Z",
+ "amount": 0.1288,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60001,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.730Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.927Z",
+ "amount": 0.2968,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60002,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.846Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.936Z",
+ "amount": 0.1848,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60003,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.953Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.944Z",
+ "amount": 0.1568,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60004,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.061Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.952Z",
+ "amount": 0.1736,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60005,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.169Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.960Z",
+ "amount": 0.3024,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60006,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.277Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.969Z",
+ "amount": 0.2128,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60007,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.384Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.977Z",
+ "amount": 0.168,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60008,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.492Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.985Z",
+ "amount": 0.2968,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60009,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.658Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:02.994Z",
+ "amount": 0.14,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60010,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.765Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.002Z",
+ "amount": 0.252,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60011,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.873Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.010Z",
+ "amount": 0.2744,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60012,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.981Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.018Z",
+ "amount": 0.196,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60013,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.088Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.027Z",
+ "amount": 0.168,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60014,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.196Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.035Z",
+ "amount": 0.1176,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60015,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.304Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.043Z",
+ "amount": 0.3248,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60016,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.411Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.052Z",
+ "amount": 0.1792,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60017,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.519Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.060Z",
+ "amount": 0.1232,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60018,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.627Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.068Z",
+ "amount": 0.1512,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60019,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.735Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.076Z",
+ "amount": 0.3024,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60020,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.842Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.085Z",
+ "amount": 0.1792,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60021,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.950Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.093Z",
+ "amount": 0.1512,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60022,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.058Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.101Z",
+ "amount": 0.2016,
+ "object": 106,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60023,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.110Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.110Z",
+ "amount": 0.2408,
+ "object": 106,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.44,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60024,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.118Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.118Z",
+ "amount": 0.2184,
+ "object": 106,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.12,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60025,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.126Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.126Z",
+ "amount": 0.1904,
+ "object": 106,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 2.72,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60026,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.134Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.134Z",
+ "amount": 0.2464,
+ "object": 106,
+ "account": 15,
"state": "pending",
"coreHours": 3.52,
"invoice": null,
- "date": "2013-12-09T22:00:00Z",
+ "date": "2013-12-17T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58670,
+ "pk": 60027,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.686Z",
+ "updated": "2013-12-18T21:29:03.143Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.686Z",
- "amount": 0.1232,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:03.143Z",
+ "amount": 0.2408,
+ "object": 106,
+ "account": 15,
"state": "pending",
- "coreHours": 1.76,
+ "coreHours": 3.44,
"invoice": null,
- "date": "2013-12-10T06:00:00Z",
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58671,
+ "pk": 60028,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.695Z",
+ "updated": "2013-12-18T21:29:03.151Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.695Z",
+ "created": "2013-12-18T21:29:03.151Z",
+ "amount": 0.196,
+ "object": 106,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 2.8,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60029,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.160Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.159Z",
+ "amount": 0.2632,
+ "object": 106,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.76,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60030,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.168Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.168Z",
+ "amount": 0.1176,
+ "object": 106,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 1.68,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60031,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.219Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.183Z",
+ "amount": 0.112,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60032,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.326Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.193Z",
+ "amount": 0.168,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60033,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.434Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.201Z",
+ "amount": 0.3248,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60034,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.542Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.209Z",
+ "amount": 0.2296,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60035,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.650Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.217Z",
+ "amount": 0.2912,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60036,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.757Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.226Z",
+ "amount": 0.2016,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60037,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.865Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.234Z",
+ "amount": 0.1736,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60038,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.973Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.242Z",
+ "amount": 0.1456,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60039,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.080Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.251Z",
+ "amount": 0.1568,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60040,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.188Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.259Z",
+ "amount": 0.224,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60041,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.296Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.267Z",
+ "amount": 0.1176,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60042,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.403Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.275Z",
+ "amount": 0.2856,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60043,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.511Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.284Z",
+ "amount": 0.3192,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60044,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.619Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.292Z",
+ "amount": 0.1736,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60045,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.726Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.300Z",
+ "amount": 0.2352,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60046,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.834Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.308Z",
+ "amount": 0.1736,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60047,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.942Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.317Z",
+ "amount": 0.2128,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60048,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.049Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.325Z",
+ "amount": 0.2968,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60049,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.157Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.333Z",
+ "amount": 0.1176,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60050,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.273Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.342Z",
+ "amount": 0.1792,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60051,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.381Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.350Z",
+ "amount": 0.3304,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60052,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.488Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.358Z",
+ "amount": 0.2912,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60053,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.638Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.366Z",
+ "amount": 0.252,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60054,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.745Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.375Z",
+ "amount": 0.3024,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60055,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.853Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.383Z",
+ "amount": 0.168,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60056,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.961Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.391Z",
+ "amount": 0.308,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60057,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.068Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.400Z",
+ "amount": 0.196,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60058,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.176Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.408Z",
+ "amount": 0.1232,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60059,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.284Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.416Z",
+ "amount": 0.3024,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60060,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.391Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.424Z",
+ "amount": 0.2912,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60061,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.499Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.433Z",
+ "amount": 0.1904,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60062,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.607Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.441Z",
+ "amount": 0.1176,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60063,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.715Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.449Z",
+ "amount": 0.1456,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60064,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.822Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.457Z",
+ "amount": 0.3136,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60065,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.930Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.466Z",
+ "amount": 0.308,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60066,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.038Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.474Z",
+ "amount": 0.252,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60067,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.145Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.482Z",
+ "amount": 0.2856,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60068,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.253Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.491Z",
"amount": 0.1624,
- "object": 92,
- "account": 13,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60069,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.361Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.499Z",
+ "amount": 0.3304,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60070,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.468Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.507Z",
+ "amount": 0.168,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60071,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.584Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.516Z",
+ "amount": 0.168,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60072,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.692Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.524Z",
+ "amount": 0.28,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60073,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.800Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.532Z",
+ "amount": 0.2856,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60074,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.907Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.541Z",
+ "amount": 0.3024,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60075,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.015Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.549Z",
+ "amount": 0.2296,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60076,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.123Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.557Z",
+ "amount": 0.3304,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60077,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.231Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.565Z",
+ "amount": 0.1792,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60078,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.338Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.574Z",
+ "amount": 0.2912,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60079,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.446Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.582Z",
+ "amount": 0.2128,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60080,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.554Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.590Z",
+ "amount": 0.1456,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60081,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.661Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.598Z",
+ "amount": 0.112,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60082,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.769Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.607Z",
+ "amount": 0.28,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60083,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.877Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.615Z",
+ "amount": 0.112,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60084,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.984Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.623Z",
+ "amount": 0.224,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60085,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.092Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.631Z",
+ "amount": 0.1344,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60086,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.200Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.640Z",
+ "amount": 0.2968,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60087,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.307Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.648Z",
+ "amount": 0.3304,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60088,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.415Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.657Z",
+ "amount": 0.3192,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60089,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.523Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.665Z",
+ "amount": 0.336,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60090,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.630Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.673Z",
+ "amount": 0.308,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60091,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.738Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.681Z",
+ "amount": 0.1288,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60092,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.854Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.690Z",
+ "amount": 0.2632,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60093,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.962Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.698Z",
+ "amount": 0.2184,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60094,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.069Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.706Z",
+ "amount": 0.1904,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60095,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.177Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.714Z",
+ "amount": 0.168,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60096,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.285Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.723Z",
+ "amount": 0.2464,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60097,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.393Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.731Z",
+ "amount": 0.2184,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60098,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.500Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.739Z",
+ "amount": 0.1736,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60099,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.666Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.748Z",
+ "amount": 0.1456,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60100,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.774Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.756Z",
+ "amount": 0.1512,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60101,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.881Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.764Z",
+ "amount": 0.3304,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60102,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.989Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.773Z",
+ "amount": 0.168,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60103,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.097Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.781Z",
+ "amount": 0.3024,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60104,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.204Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.789Z",
+ "amount": 0.2856,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60105,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.312Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.797Z",
+ "amount": 0.2856,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60106,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.420Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.806Z",
+ "amount": 0.1232,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60107,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.527Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.814Z",
+ "amount": 0.2632,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60108,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.635Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.822Z",
+ "amount": 0.196,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60109,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.743Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.830Z",
+ "amount": 0.1344,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60110,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.851Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.839Z",
+ "amount": 0.2352,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60111,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.958Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.847Z",
+ "amount": 0.2632,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60112,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.066Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.855Z",
+ "amount": 0.2128,
+ "object": 107,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60113,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.864Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.864Z",
+ "amount": 0.14,
+ "object": 107,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 2.0,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60114,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.872Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.872Z",
+ "amount": 0.252,
+ "object": 107,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.6,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60115,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.880Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.880Z",
+ "amount": 0.28,
+ "object": 107,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.0,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60116,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:03.888Z",
+ "slice": 4,
+ "created": "2013-12-18T21:29:03.888Z",
+ "amount": 0.1624,
+ "object": 107,
+ "account": 15,
"state": "pending",
"coreHours": 2.32,
"invoice": null,
- "date": "2013-12-10T14:00:00Z",
+ "date": "2013-12-17T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58672,
+ "pk": 60117,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.703Z",
+ "updated": "2013-12-18T21:29:03.897Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.703Z",
- "amount": 0.14,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:03.897Z",
+ "amount": 0.2744,
+ "object": 107,
+ "account": 15,
"state": "pending",
- "coreHours": 2.0,
+ "coreHours": 3.92,
"invoice": null,
- "date": "2013-12-10T22:00:00Z",
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58673,
+ "pk": 60118,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.711Z",
+ "updated": "2013-12-18T21:29:03.905Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.711Z",
- "amount": 0.3304,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:03.905Z",
+ "amount": 0.28,
+ "object": 107,
+ "account": 15,
"state": "pending",
- "coreHours": 4.72,
+ "coreHours": 4.0,
"invoice": null,
- "date": "2013-12-11T06:00:00Z",
+ "date": "2013-12-17T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58674,
+ "pk": 60119,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.719Z",
+ "updated": "2013-12-18T21:29:03.913Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.719Z",
- "amount": 0.196,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:03.913Z",
+ "amount": 0.2408,
+ "object": 107,
+ "account": 15,
"state": "pending",
- "coreHours": 2.8,
+ "coreHours": 3.44,
"invoice": null,
- "date": "2013-12-11T14:00:00Z",
+ "date": "2013-12-18T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58675,
+ "pk": 60120,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.728Z",
+ "updated": "2013-12-18T21:29:03.921Z",
"slice": 4,
- "created": "2013-12-13T22:19:45.728Z",
- "amount": 0.2912,
- "object": 92,
- "account": 13,
+ "created": "2013-12-18T21:29:03.921Z",
+ "amount": 0.308,
+ "object": 107,
+ "account": 15,
"state": "pending",
- "coreHours": 4.16,
+ "coreHours": 4.4,
"invoice": null,
- "date": "2013-12-11T22:00:00Z",
+ "date": "2013-12-18T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58676,
+ "pk": 60121,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:45.736Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.736Z",
- "amount": 0.1904,
- "object": 92,
- "account": 13,
- "state": "pending",
- "coreHours": 2.72,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58677,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:45.744Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.744Z",
- "amount": 0.3136,
- "object": 92,
- "account": 13,
- "state": "pending",
- "coreHours": 4.48,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58678,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:45.753Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.753Z",
- "amount": 0.3304,
- "object": 92,
- "account": 13,
- "state": "pending",
- "coreHours": 4.72,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58679,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:45.761Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.761Z",
- "amount": 0.1792,
- "object": 92,
- "account": 13,
- "state": "pending",
- "coreHours": 2.56,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58680,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:45.769Z",
- "slice": 4,
- "created": "2013-12-13T22:19:45.769Z",
- "amount": 0.1344,
- "object": 92,
- "account": 13,
- "state": "pending",
- "coreHours": 1.92,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58681,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.457Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.817Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58682,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.548Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.827Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58683,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.639Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.836Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58684,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.730Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.844Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58685,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.822Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.852Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58686,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.913Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.860Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58687,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.021Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.869Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58688,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.112Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.877Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58689,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.203Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.885Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58690,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.294Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.893Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58691,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.386Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.902Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58692,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.477Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.910Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58693,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.568Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.918Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58694,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.667Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.927Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58695,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.770Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.935Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58696,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.861Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.943Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58697,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.952Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.951Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58698,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.043Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.960Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58699,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.143Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.968Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58700,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.234Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.976Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58701,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.325Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.985Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58702,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.419Z",
- "slice": 8,
- "created": "2013-12-13T22:19:45.993Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58703,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.510Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.001Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58704,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.617Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.009Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58705,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.709Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.018Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58706,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.800Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.026Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58707,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.918Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.034Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58708,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.007Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.043Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58709,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.098Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.051Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58710,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.189Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.059Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58711,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.355Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.067Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58712,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.727Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.076Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58713,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.818Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.084Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58714,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.910Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.092Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58715,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.009Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.101Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58716,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.100Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.109Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58717,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.191Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.117Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58718,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.287Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.125Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58719,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.378Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.134Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58720,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.469Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.142Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58721,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.561Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.150Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58722,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.652Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.158Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58723,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.743Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.167Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58724,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.834Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.175Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58725,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.925Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.183Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58726,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.016Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.192Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58727,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.107Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.200Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58728,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.198Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.208Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58729,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.290Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.216Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58730,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.381Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.225Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58731,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.473Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.233Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58732,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.565Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.241Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58733,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.656Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.250Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58734,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.747Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.258Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58735,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.830Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.266Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58736,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.929Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.274Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58737,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.020Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.283Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58738,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.111Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.291Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58739,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.203Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.299Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58740,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.294Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.308Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58741,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.385Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.316Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58742,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.476Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.324Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58743,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.567Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.333Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58744,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.658Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.341Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58745,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.749Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.349Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58746,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.840Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.357Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58747,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.932Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.366Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58748,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.031Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.374Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58749,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.129Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.382Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58750,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.220Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.391Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58751,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.311Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.399Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58752,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.402Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.407Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58753,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.493Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.415Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58754,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.584Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.424Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58755,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.675Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.432Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58756,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.766Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.440Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58757,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.448Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.448Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58758,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.457Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.457Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58759,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.465Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.465Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58760,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.473Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.473Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58761,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.482Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.482Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58762,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.490Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.490Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58763,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.498Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.498Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58764,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.506Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.506Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58765,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.515Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.515Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58766,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.523Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.523Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58767,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.531Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.531Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58768,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.540Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.540Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58769,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.548Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.548Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58770,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:46.556Z",
- "slice": 8,
- "created": "2013-12-13T22:19:46.556Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58771,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.490Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.577Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58772,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.581Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.589Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58773,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.672Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.597Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58774,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.764Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.606Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58775,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.855Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.614Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58776,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.963Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.622Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58777,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.054Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.631Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58778,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.145Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.639Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58779,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.236Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.647Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58780,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.328Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.656Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58781,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.419Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.664Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58782,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.510Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.672Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58783,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.601Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.680Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58784,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.712Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.689Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58785,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.803Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.697Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58786,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.894Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.705Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58787,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.985Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.713Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58788,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.077Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.722Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58789,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.135Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.730Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58790,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.226Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.738Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58791,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.317Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.747Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58792,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.410Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.755Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58793,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.501Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.763Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58794,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.602Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.771Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58795,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.700Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.780Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58796,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.792Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.788Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58797,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.883Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.797Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58798,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.999Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.805Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58799,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.090Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.813Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58800,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.181Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.821Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58801,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.347Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.830Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58802,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.719Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.838Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58803,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.810Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.846Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58804,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.901Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.854Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58805,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.001Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.863Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58806,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.092Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.871Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58807,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.183Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.879Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58808,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.279Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.888Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58809,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.370Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.896Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58810,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.461Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.904Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58811,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.552Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.912Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58812,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.643Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.921Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58813,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.735Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.929Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58814,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.826Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.937Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58815,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.917Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.945Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58816,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.008Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.954Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58817,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.091Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.962Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58818,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.182Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.970Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58819,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.273Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.979Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58820,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.364Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.987Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58821,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.457Z",
- "slice": 9,
- "created": "2013-12-13T22:19:46.995Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58822,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.548Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.004Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58823,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.639Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.012Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58824,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.730Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.020Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58825,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.813Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.028Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58826,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.913Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.037Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58827,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.004Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.045Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58828,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.095Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.053Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58829,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.186Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.061Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58830,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.277Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.070Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58831,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.368Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.078Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58832,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.459Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.086Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58833,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.550Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.095Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58834,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.642Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.103Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58835,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.733Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.111Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58836,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.824Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.119Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58837,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.915Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.128Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58838,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.014Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.136Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58839,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.112Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.144Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58840,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.203Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.153Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58841,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.294Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.161Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58842,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.385Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.169Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58843,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.477Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.177Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58844,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.568Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.186Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58845,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.659Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.194Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58846,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.750Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.202Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58847,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.211Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.211Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58848,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.219Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.219Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58849,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.227Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.227Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58850,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.236Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.236Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58851,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.244Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.244Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58852,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.252Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.252Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58853,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.260Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.260Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58854,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.269Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.269Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58855,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.277Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.277Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58856,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.285Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.285Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58857,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.294Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.294Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58858,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.302Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.302Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58859,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.310Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.310Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58860,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.318Z",
- "slice": 9,
- "created": "2013-12-13T22:19:47.318Z",
- "amount": 0.56,
- "object": 93,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 58861,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.449Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.350Z",
- "amount": 0.336,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58862,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.540Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.360Z",
- "amount": 0.3024,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58863,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.631Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.368Z",
- "amount": 0.2016,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58864,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.722Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.376Z",
- "amount": 0.2912,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58865,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.813Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.385Z",
- "amount": 0.2632,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58866,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.904Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.393Z",
- "amount": 0.2016,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58867,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.013Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.401Z",
- "amount": 0.252,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58868,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.104Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.410Z",
- "amount": 0.1456,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58869,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.195Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.418Z",
- "amount": 0.1512,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58870,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.286Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.426Z",
- "amount": 0.2688,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58871,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.369Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.434Z",
- "amount": 0.168,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58872,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.460Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.443Z",
- "amount": 0.2856,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58873,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.551Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.451Z",
- "amount": 0.3192,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58874,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.651Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.459Z",
- "amount": 0.3192,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58875,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.753Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.467Z",
- "amount": 0.196,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58876,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.845Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.476Z",
- "amount": 0.196,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58877,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.936Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.484Z",
- "amount": 0.168,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58878,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.027Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.492Z",
- "amount": 0.2072,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58879,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.118Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.501Z",
- "amount": 0.1792,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58880,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.209Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.509Z",
- "amount": 0.2464,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58881,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.300Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.517Z",
- "amount": 0.2296,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58882,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.394Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.525Z",
- "amount": 0.2576,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58883,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.485Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.534Z",
+ "updated": "2013-12-18T21:29:20.227Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:03.953Z",
"amount": 0.2968,
- "object": 94,
- "account": 13,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
"coreHours": 4.24,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58884,
+ "pk": 60122,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:00.576Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.542Z",
- "amount": 0.2072,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:20.335Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:03.963Z",
+ "amount": 0.196,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.96,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
+ "coreHours": 2.8,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58885,
+ "pk": 60123,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:00.684Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.550Z",
+ "updated": "2013-12-18T21:29:20.442Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:03.971Z",
+ "amount": 0.1232,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60124,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.550Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:03.979Z",
+ "amount": 0.308,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60125,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.658Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:03.988Z",
+ "amount": 0.2464,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60126,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.765Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:03.996Z",
+ "amount": 0.196,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60127,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.873Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.004Z",
+ "amount": 0.2464,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60128,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.981Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.013Z",
+ "amount": 0.1736,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60129,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.088Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.021Z",
+ "amount": 0.2968,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60130,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.196Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.029Z",
+ "amount": 0.1568,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60131,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.304Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.037Z",
+ "amount": 0.3136,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60132,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.412Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.046Z",
+ "amount": 0.1456,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60133,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.519Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.054Z",
"amount": 0.1288,
- "object": 94,
- "account": 13,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
"coreHours": 1.84,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58886,
+ "pk": 60134,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:00.775Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.559Z",
+ "updated": "2013-12-18T21:29:21.627Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.062Z",
+ "amount": 0.1456,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60135,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.735Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.071Z",
+ "amount": 0.2128,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60136,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.842Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.079Z",
+ "amount": 0.2856,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60137,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.950Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.087Z",
+ "amount": 0.2464,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60138,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.058Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.095Z",
+ "amount": 0.2744,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60139,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.166Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.104Z",
+ "amount": 0.2912,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60140,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.281Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.112Z",
+ "amount": 0.2464,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60141,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.389Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.120Z",
+ "amount": 0.2464,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60142,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.497Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.129Z",
+ "amount": 0.1736,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60143,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.646Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.137Z",
+ "amount": 0.1456,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60144,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.754Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.145Z",
+ "amount": 0.1568,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60145,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.861Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.154Z",
+ "amount": 0.1736,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60146,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.969Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.162Z",
+ "amount": 0.252,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60147,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.077Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.170Z",
+ "amount": 0.2016,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60148,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.184Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.178Z",
+ "amount": 0.3192,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60149,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.292Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.187Z",
+ "amount": 0.2464,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60150,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.400Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.195Z",
+ "amount": 0.112,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60151,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.507Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.203Z",
+ "amount": 0.1568,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60152,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.615Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.212Z",
+ "amount": 0.28,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60153,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.723Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.220Z",
+ "amount": 0.2016,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60154,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.831Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.228Z",
+ "amount": 0.2072,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60155,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.938Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.236Z",
+ "amount": 0.2856,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60156,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.046Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.245Z",
+ "amount": 0.2464,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60157,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.154Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.253Z",
+ "amount": 0.3192,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60158,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.261Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.261Z",
+ "amount": 0.2912,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60159,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.369Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.269Z",
+ "amount": 0.2072,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60160,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.477Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.278Z",
+ "amount": 0.2912,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60161,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.593Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.286Z",
+ "amount": 0.14,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60162,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.700Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.294Z",
+ "amount": 0.1848,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60163,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.808Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.303Z",
+ "amount": 0.2576,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60164,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.916Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.311Z",
+ "amount": 0.2072,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60165,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.023Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.319Z",
+ "amount": 0.1848,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60166,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.131Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.327Z",
+ "amount": 0.1568,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60167,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.239Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.336Z",
+ "amount": 0.2128,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60168,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.346Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.344Z",
+ "amount": 0.168,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60169,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.454Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.352Z",
+ "amount": 0.28,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60170,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.562Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.361Z",
+ "amount": 0.2296,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60171,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.670Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.369Z",
+ "amount": 0.1904,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60172,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.777Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.377Z",
"amount": 0.1624,
- "object": 94,
- "account": 13,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.32,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58887,
+ "pk": 60173,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:00.866Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.567Z",
- "amount": 0.3248,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:25.885Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.385Z",
+ "amount": 0.252,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.64,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
+ "coreHours": 3.6,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58888,
+ "pk": 60174,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:00.982Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.575Z",
- "amount": 0.3248,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:25.993Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.394Z",
+ "amount": 0.112,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.64,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
+ "coreHours": 1.6,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58889,
+ "pk": 60175,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:01.073Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.583Z",
- "amount": 0.1848,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:26.100Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.402Z",
+ "amount": 0.2576,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.64,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
+ "coreHours": 3.68,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58890,
+ "pk": 60176,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:01.164Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.592Z",
- "amount": 0.3136,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:26.208Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.410Z",
+ "amount": 0.3192,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.48,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
+ "coreHours": 4.56,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58891,
+ "pk": 60177,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:01.330Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.600Z",
- "amount": 0.2128,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:26.316Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.419Z",
+ "amount": 0.2632,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.04,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
+ "coreHours": 3.76,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58892,
+ "pk": 60178,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:01.636Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.608Z",
- "amount": 0.2688,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:26.423Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.427Z",
+ "amount": 0.1792,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.84,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
+ "coreHours": 2.56,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58893,
+ "pk": 60179,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:01.794Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.616Z",
- "amount": 0.2968,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:26.531Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.435Z",
+ "amount": 0.196,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.24,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
+ "coreHours": 2.8,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58894,
+ "pk": 60180,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:01.885Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.625Z",
- "amount": 0.168,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:26.639Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.443Z",
+ "amount": 0.1176,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.4,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
+ "coreHours": 1.68,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58895,
+ "pk": 60181,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:01.984Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.633Z",
- "amount": 0.3248,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:26.746Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.452Z",
+ "amount": 0.2408,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.64,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
+ "coreHours": 3.44,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58896,
+ "pk": 60182,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.075Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.641Z",
- "amount": 0.2968,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:26.862Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.460Z",
+ "amount": 0.2576,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.24,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
+ "coreHours": 3.68,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58897,
+ "pk": 60183,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.166Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.650Z",
- "amount": 0.2968,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:26.970Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.468Z",
+ "amount": 0.2744,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.24,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
+ "coreHours": 3.92,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58898,
+ "pk": 60184,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.262Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.658Z",
- "amount": 0.2184,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:27.078Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.476Z",
+ "amount": 0.3024,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.12,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
+ "coreHours": 4.32,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58899,
+ "pk": 60185,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.354Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.666Z",
+ "updated": "2013-12-18T21:29:27.186Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.485Z",
+ "amount": 0.3192,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60186,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.293Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.493Z",
"amount": 0.3304,
- "object": 94,
- "account": 13,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
"coreHours": 4.72,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58900,
+ "pk": 60187,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.445Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.674Z",
+ "updated": "2013-12-18T21:29:27.401Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.501Z",
+ "amount": 0.3192,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60188,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.509Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.510Z",
+ "amount": 0.168,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60189,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.674Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.518Z",
+ "amount": 0.3136,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60190,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.782Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.526Z",
+ "amount": 0.1792,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60191,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.890Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.535Z",
+ "amount": 0.2576,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60192,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.997Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.543Z",
+ "amount": 0.2464,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60193,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.105Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.551Z",
+ "amount": 0.2968,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60194,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.213Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.559Z",
+ "amount": 0.28,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60195,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.320Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.568Z",
+ "amount": 0.1344,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60196,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.428Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.576Z",
+ "amount": 0.2128,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60197,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.536Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.584Z",
+ "amount": 0.196,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60198,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.644Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.593Z",
+ "amount": 0.2912,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60199,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.751Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.601Z",
+ "amount": 0.2632,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60200,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.859Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.609Z",
+ "amount": 0.3024,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60201,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.967Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.617Z",
"amount": 0.1568,
- "object": 94,
- "account": 13,
+ "object": 108,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.24,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58901,
+ "pk": 60202,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.536Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.683Z",
+ "updated": "2013-12-18T21:29:29.074Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.626Z",
+ "amount": 0.2352,
+ "object": 108,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60203,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:04.634Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.634Z",
+ "amount": 0.2688,
+ "object": 108,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.84,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60204,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:04.642Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.642Z",
+ "amount": 0.14,
+ "object": 108,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 2.0,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60205,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:04.651Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.651Z",
+ "amount": 0.28,
+ "object": 108,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.0,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60206,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:04.659Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.659Z",
+ "amount": 0.2352,
+ "object": 108,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.36,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60207,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:04.667Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.667Z",
"amount": 0.1848,
- "object": 94,
- "account": 13,
- "state": "invoiced",
+ "object": 108,
+ "account": 15,
+ "state": "pending",
"coreHours": 2.64,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58902,
+ "pk": 60208,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.627Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.691Z",
- "amount": 0.308,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:04.676Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.676Z",
+ "amount": 0.2688,
+ "object": 108,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.84,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60209,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:04.684Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.684Z",
+ "amount": 0.2184,
+ "object": 108,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.12,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60210,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:04.692Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.692Z",
+ "amount": 0.1176,
+ "object": 108,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 1.68,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60211,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.235Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.707Z",
+ "amount": 0.3136,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.4,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
+ "coreHours": 4.48,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58903,
+ "pk": 60212,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.718Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.699Z",
+ "updated": "2013-12-18T21:29:20.343Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.717Z",
+ "amount": 0.196,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60213,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.451Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.725Z",
+ "amount": 0.1176,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60214,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.558Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.733Z",
+ "amount": 0.28,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60215,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.666Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.742Z",
+ "amount": 0.1792,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60216,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.774Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.750Z",
+ "amount": 0.14,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60217,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.881Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.758Z",
+ "amount": 0.2576,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60218,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.989Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.767Z",
+ "amount": 0.1736,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60219,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.097Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.775Z",
"amount": 0.336,
- "object": 94,
- "account": 13,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
"coreHours": 4.8,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58904,
+ "pk": 60220,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.809Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.708Z",
+ "updated": "2013-12-18T21:29:21.205Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.783Z",
+ "amount": 0.2072,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60221,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.312Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.791Z",
"amount": 0.2184,
- "object": 94,
- "account": 13,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
"coreHours": 3.12,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58905,
+ "pk": 60222,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.900Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.716Z",
- "amount": 0.1904,
- "object": 94,
- "account": 13,
+ "updated": "2013-12-18T21:29:21.420Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.800Z",
+ "amount": 0.196,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 2.72,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
+ "coreHours": 2.8,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58906,
+ "pk": 60223,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:02.991Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.724Z",
+ "updated": "2013-12-18T21:29:21.528Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.808Z",
+ "amount": 0.3192,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60224,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.636Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.816Z",
+ "amount": 0.1456,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60225,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.743Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.825Z",
+ "amount": 0.2296,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60226,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.851Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.833Z",
+ "amount": 0.2016,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60227,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.958Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.841Z",
+ "amount": 0.2352,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60228,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.066Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.849Z",
+ "amount": 0.1456,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60229,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.174Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.858Z",
+ "amount": 0.252,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60230,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.290Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.866Z",
+ "amount": 0.2296,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60231,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.397Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.874Z",
+ "amount": 0.1792,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60232,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.505Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.883Z",
+ "amount": 0.1848,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60233,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.654Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.891Z",
+ "amount": 0.2128,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60234,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.762Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.899Z",
+ "amount": 0.252,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60235,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.870Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.907Z",
+ "amount": 0.2912,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60236,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.977Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.915Z",
+ "amount": 0.1568,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60237,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.085Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.924Z",
+ "amount": 0.1288,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60238,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.193Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.932Z",
+ "amount": 0.2016,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60239,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.300Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.940Z",
+ "amount": 0.2184,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60240,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.408Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.949Z",
+ "amount": 0.1456,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60241,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.516Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.957Z",
+ "amount": 0.1456,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60242,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.623Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.965Z",
+ "amount": 0.3304,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60243,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.731Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.974Z",
+ "amount": 0.2408,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60244,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.839Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.982Z",
+ "amount": 0.2688,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60245,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.947Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.990Z",
+ "amount": 0.3304,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60246,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.054Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:04.998Z",
"amount": 0.1624,
- "object": 94,
- "account": 13,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.32,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 58907,
+ "pk": 60247,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:20:03.083Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.733Z",
- "amount": 0.2072,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58908,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.174Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.741Z",
- "amount": 0.2968,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58909,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.265Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.749Z",
- "amount": 0.3024,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58910,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.356Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.757Z",
- "amount": 0.2856,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58911,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.449Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.765Z",
- "amount": 0.1232,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58912,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.540Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.774Z",
- "amount": 0.1792,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58913,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.631Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.782Z",
- "amount": 0.1792,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58914,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.722Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.791Z",
- "amount": 0.1344,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58915,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.805Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.799Z",
- "amount": 0.3192,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58916,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.904Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.807Z",
- "amount": 0.1232,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58917,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.995Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.815Z",
- "amount": 0.1288,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58918,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.087Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.824Z",
- "amount": 0.2912,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58919,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.178Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.832Z",
- "amount": 0.2744,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58920,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.269Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.840Z",
- "amount": 0.1568,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58921,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.360Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.849Z",
- "amount": 0.2688,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58922,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.451Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.857Z",
- "amount": 0.336,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58923,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.542Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.865Z",
- "amount": 0.196,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58924,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.633Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.873Z",
- "amount": 0.1176,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58925,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.724Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.885Z",
- "amount": 0.1512,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58926,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.816Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.893Z",
- "amount": 0.308,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58927,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.907Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.902Z",
- "amount": 0.3192,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58928,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.006Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.910Z",
- "amount": 0.1904,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58929,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.097Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.918Z",
- "amount": 0.14,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58930,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.195Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.926Z",
- "amount": 0.1288,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58931,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.286Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.935Z",
- "amount": 0.1512,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58932,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.377Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.943Z",
- "amount": 0.252,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58933,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.468Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.951Z",
- "amount": 0.1232,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58934,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.559Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.960Z",
- "amount": 0.1232,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58935,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.651Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.968Z",
- "amount": 0.1512,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58936,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.742Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.976Z",
- "amount": 0.336,
- "object": 94,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58937,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.984Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.984Z",
- "amount": 0.196,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 2.8,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58938,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:47.993Z",
- "slice": 11,
- "created": "2013-12-13T22:19:47.993Z",
- "amount": 0.1904,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 2.72,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58939,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.001Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.001Z",
- "amount": 0.2464,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 3.52,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58940,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.009Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.009Z",
- "amount": 0.196,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 2.8,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58941,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.017Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.017Z",
- "amount": 0.1736,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 2.48,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58942,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.026Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.026Z",
- "amount": 0.1848,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 2.64,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58943,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.034Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.034Z",
- "amount": 0.1568,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 2.24,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58944,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.042Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.042Z",
- "amount": 0.1904,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 2.72,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58945,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.051Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.051Z",
- "amount": 0.3192,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 4.56,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58946,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.059Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.059Z",
- "amount": 0.1568,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 2.24,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58947,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.067Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.067Z",
- "amount": 0.2688,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 3.84,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58948,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.075Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.075Z",
- "amount": 0.2632,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 3.76,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58949,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.084Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.084Z",
- "amount": 0.2856,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 4.08,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58950,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.092Z",
- "slice": 11,
- "created": "2013-12-13T22:19:48.092Z",
- "amount": 0.336,
- "object": 94,
- "account": 13,
- "state": "pending",
- "coreHours": 4.8,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58951,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.440Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.115Z",
- "amount": 0.2296,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58952,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.532Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.125Z",
- "amount": 0.2352,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58953,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.623Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.133Z",
- "amount": 0.308,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58954,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.714Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.142Z",
- "amount": 0.252,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58955,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.805Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.150Z",
- "amount": 0.308,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58956,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.896Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.158Z",
- "amount": 0.3024,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58957,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.004Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.167Z",
- "amount": 0.1456,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58958,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.096Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.175Z",
- "amount": 0.2912,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58959,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.187Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.183Z",
- "amount": 0.1232,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58960,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.278Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.191Z",
- "amount": 0.2184,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58961,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.361Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.200Z",
- "amount": 0.2352,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58962,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.452Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.208Z",
- "amount": 0.2016,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58963,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.543Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.216Z",
- "amount": 0.1512,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58964,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.642Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.224Z",
- "amount": 0.2296,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58965,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.745Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.233Z",
- "amount": 0.308,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58966,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.836Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.241Z",
- "amount": 0.2408,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58967,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.927Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.249Z",
- "amount": 0.1512,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58968,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.019Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.258Z",
- "amount": 0.2016,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58969,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.110Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.266Z",
- "amount": 0.2744,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58970,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.201Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.274Z",
- "amount": 0.2184,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58971,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.292Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.283Z",
- "amount": 0.2016,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58972,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.386Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.291Z",
- "amount": 0.1792,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58973,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.477Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.299Z",
- "amount": 0.196,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58974,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.568Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.308Z",
- "amount": 0.1288,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58975,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.675Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.316Z",
- "amount": 0.224,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58976,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.767Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.324Z",
- "amount": 0.1904,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58977,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.858Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.332Z",
- "amount": 0.3304,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58978,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.974Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.341Z",
- "amount": 0.2632,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58979,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.065Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.349Z",
- "amount": 0.168,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58980,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.156Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.357Z",
- "amount": 0.2464,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58981,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.314Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.365Z",
- "amount": 0.196,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58982,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.578Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.374Z",
- "amount": 0.2408,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58983,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.786Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.382Z",
- "amount": 0.3192,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58984,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.877Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.390Z",
- "amount": 0.1848,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.64,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58985,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.976Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.399Z",
- "amount": 0.168,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58986,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.067Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.407Z",
- "amount": 0.224,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58987,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.158Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.415Z",
- "amount": 0.1736,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58988,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.254Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.423Z",
- "amount": 0.308,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58989,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.345Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.432Z",
- "amount": 0.1736,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58990,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.436Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.440Z",
- "amount": 0.1176,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58991,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.527Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.448Z",
- "amount": 0.2744,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58992,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.619Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.457Z",
- "amount": 0.224,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58993,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.710Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.465Z",
- "amount": 0.1176,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58994,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.801Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.473Z",
- "amount": 0.2184,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58995,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.892Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.481Z",
- "amount": 0.1904,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58996,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.983Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.490Z",
- "amount": 0.196,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58997,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.074Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.498Z",
- "amount": 0.2464,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58998,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.165Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.506Z",
- "amount": 0.1232,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 58999,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.256Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.514Z",
- "amount": 0.2016,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59000,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.348Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.523Z",
- "amount": 0.2408,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59001,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.440Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.531Z",
- "amount": 0.196,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59002,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.531Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.539Z",
- "amount": 0.1848,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.64,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59003,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.623Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.548Z",
- "amount": 0.252,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59004,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.714Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.556Z",
- "amount": 0.14,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59005,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.846Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.564Z",
- "amount": 0.1288,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59006,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.946Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.572Z",
- "amount": 0.1456,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59007,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.037Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.581Z",
- "amount": 0.308,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59008,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.128Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.589Z",
- "amount": 0.1512,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59009,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.219Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.597Z",
- "amount": 0.2912,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59010,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.310Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.606Z",
- "amount": 0.1568,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59011,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.401Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.614Z",
- "amount": 0.3192,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59012,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.492Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.622Z",
- "amount": 0.1232,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59013,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.584Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.630Z",
- "amount": 0.3248,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59014,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.675Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.639Z",
- "amount": 0.1344,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59015,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.766Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.647Z",
- "amount": 0.252,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59016,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.857Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.655Z",
- "amount": 0.2856,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59017,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.948Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.664Z",
- "amount": 0.196,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59018,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.998Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.672Z",
- "amount": 0.196,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59019,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.089Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.680Z",
- "amount": 0.1232,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59020,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.187Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.688Z",
- "amount": 0.2464,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59021,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.278Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.697Z",
- "amount": 0.2128,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59022,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.369Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.705Z",
- "amount": 0.1288,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59023,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.460Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.713Z",
- "amount": 0.1904,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59024,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.551Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.722Z",
- "amount": 0.1792,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59025,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.642Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.730Z",
- "amount": 0.252,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59026,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.733Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.738Z",
- "amount": 0.2688,
- "object": 95,
- "account": 13,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59027,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.746Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.746Z",
- "amount": 0.2576,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 3.68,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59028,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.755Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.755Z",
- "amount": 0.2968,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 4.24,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59029,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.763Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.763Z",
- "amount": 0.2968,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 4.24,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59030,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.771Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.771Z",
- "amount": 0.3192,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 4.56,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59031,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.780Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.780Z",
- "amount": 0.3024,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 4.32,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59032,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.788Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.788Z",
- "amount": 0.1176,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 1.68,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59033,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.796Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.796Z",
- "amount": 0.308,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 4.4,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59034,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.805Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.805Z",
- "amount": 0.2408,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 3.44,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59035,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.813Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.813Z",
- "amount": 0.1344,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 1.92,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59036,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.821Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.821Z",
- "amount": 0.112,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 1.6,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59037,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.829Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.829Z",
- "amount": 0.1792,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 2.56,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59038,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.838Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.838Z",
- "amount": 0.1792,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 2.56,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59039,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.846Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.846Z",
- "amount": 0.3192,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 4.56,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59040,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:48.854Z",
- "slice": 12,
- "created": "2013-12-13T22:19:48.854Z",
- "amount": 0.3192,
- "object": 95,
- "account": 13,
- "state": "pending",
- "coreHours": 4.56,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59041,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.076Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.886Z",
- "amount": 0.3136,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 54,
- "date": "2013-11-13T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59042,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.117Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.896Z",
- "amount": 0.2072,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 54,
- "date": "2013-11-14T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59043,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.158Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.904Z",
- "amount": 0.2408,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 54,
- "date": "2013-11-14T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59044,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.200Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.912Z",
- "amount": 0.2576,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 54,
- "date": "2013-11-14T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59045,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.241Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.921Z",
- "amount": 0.2632,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 54,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59046,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.283Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.929Z",
- "amount": 0.2352,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 54,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59047,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.324Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.937Z",
- "amount": 0.2072,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 54,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59048,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.366Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.945Z",
- "amount": 0.2296,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 54,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59049,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.407Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.954Z",
- "amount": 0.1792,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 54,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59050,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.448Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.962Z",
- "amount": 0.2296,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 54,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59051,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.490Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.970Z",
- "amount": 0.3192,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 54,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59052,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.531Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.978Z",
- "amount": 0.2128,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 54,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59053,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.584Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.987Z",
- "amount": 0.3024,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 54,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59054,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.647Z",
- "slice": 14,
- "created": "2013-12-13T22:19:48.995Z",
- "amount": 0.2408,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 55,
- "date": "2013-11-18T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59055,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.689Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.003Z",
- "amount": 0.3024,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 55,
- "date": "2013-11-18T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59056,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.730Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.012Z",
- "amount": 0.224,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 55,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59057,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.771Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.020Z",
- "amount": 0.2408,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 55,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59058,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.813Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.028Z",
- "amount": 0.196,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 55,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59059,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.854Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.036Z",
- "amount": 0.2968,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 55,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59060,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.896Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.045Z",
- "amount": 0.2464,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 55,
- "date": "2013-11-20T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59061,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.937Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.053Z",
- "amount": 0.252,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 55,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59062,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.979Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.061Z",
- "amount": 0.336,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 55,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59063,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.020Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.070Z",
- "amount": 0.28,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 55,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59064,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.061Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.078Z",
- "amount": 0.3192,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 55,
- "date": "2013-11-21T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59065,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.103Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.086Z",
- "amount": 0.1904,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 55,
- "date": "2013-11-21T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59066,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.144Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.094Z",
- "amount": 0.2016,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 55,
- "date": "2013-11-22T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59067,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.186Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.103Z",
- "amount": 0.1232,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 55,
- "date": "2013-11-22T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59068,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.227Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.111Z",
- "amount": 0.1176,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 55,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59069,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.268Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.119Z",
- "amount": 0.308,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 55,
- "date": "2013-11-23T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59070,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.310Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.127Z",
- "amount": 0.2856,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 55,
- "date": "2013-11-23T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59071,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.351Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.136Z",
- "amount": 0.3248,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 55,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59072,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.393Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.144Z",
- "amount": 0.2016,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 55,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59073,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.434Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.152Z",
- "amount": 0.28,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 55,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59074,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.476Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.161Z",
- "amount": 0.252,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 55,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59075,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.525Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.169Z",
- "amount": 0.2352,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 56,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59076,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.567Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.177Z",
- "amount": 0.1848,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.64,
- "invoice": 56,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59077,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.608Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.186Z",
- "amount": 0.2632,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 56,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59078,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.650Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.194Z",
- "amount": 0.1232,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 56,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59079,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.693Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.202Z",
- "amount": 0.112,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 56,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59080,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.734Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.210Z",
- "amount": 0.3304,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 56,
- "date": "2013-11-26T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59081,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.775Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.219Z",
- "amount": 0.2016,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 56,
- "date": "2013-11-27T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59082,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.817Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.227Z",
- "amount": 0.112,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 56,
- "date": "2013-11-27T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59083,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.858Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.235Z",
- "amount": 0.196,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 56,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59084,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.900Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.243Z",
- "amount": 0.308,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 56,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59085,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.941Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.252Z",
- "amount": 0.1848,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.64,
- "invoice": 56,
- "date": "2013-11-28T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59086,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.983Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.260Z",
- "amount": 0.2016,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 56,
- "date": "2013-11-28T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59087,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.024Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.268Z",
- "amount": 0.2128,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 56,
- "date": "2013-11-29T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59088,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.065Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.277Z",
- "amount": 0.2072,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 56,
- "date": "2013-11-29T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59089,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.107Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.285Z",
- "amount": 0.2408,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 56,
- "date": "2013-11-29T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59090,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.140Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.293Z",
- "amount": 0.2072,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 56,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59091,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.181Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.302Z",
- "amount": 0.2632,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 56,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59092,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.223Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.310Z",
- "amount": 0.2352,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 56,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59093,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.264Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.318Z",
- "amount": 0.3024,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 56,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59094,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.306Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.326Z",
- "amount": 0.2688,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 56,
- "date": "2013-12-01T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59095,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.347Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.335Z",
- "amount": 0.2744,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 56,
- "date": "2013-12-01T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59096,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.397Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.343Z",
- "amount": 0.1904,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 57,
- "date": "2013-12-02T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59097,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.438Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.351Z",
- "amount": 0.112,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 57,
- "date": "2013-12-02T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59098,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.479Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.360Z",
- "amount": 0.2576,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 57,
- "date": "2013-12-02T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59099,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.521Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.368Z",
- "amount": 0.1344,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 57,
- "date": "2013-12-03T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59100,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.562Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.376Z",
- "amount": 0.1568,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 57,
- "date": "2013-12-03T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59101,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.604Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.384Z",
- "amount": 0.196,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 57,
- "date": "2013-12-03T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59102,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.645Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.393Z",
- "amount": 0.28,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 57,
- "date": "2013-12-04T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59103,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.687Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.401Z",
- "amount": 0.2072,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 57,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59104,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.728Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.409Z",
- "amount": 0.3136,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 57,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59105,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.769Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.417Z",
- "amount": 0.1456,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 57,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59106,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.811Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.426Z",
- "amount": 0.1736,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 57,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59107,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.852Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.434Z",
- "amount": 0.1176,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 57,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59108,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.894Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.442Z",
- "amount": 0.28,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 57,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59109,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.935Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.451Z",
- "amount": 0.3192,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 57,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59110,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.977Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.459Z",
- "amount": 0.3248,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 57,
- "date": "2013-12-06T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59111,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.018Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.467Z",
- "amount": 0.1288,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 57,
- "date": "2013-12-07T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59112,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.059Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.475Z",
- "amount": 0.308,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 57,
- "date": "2013-12-07T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59113,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.101Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.484Z",
- "amount": 0.1736,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 57,
- "date": "2013-12-07T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59114,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.142Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.492Z",
- "amount": 0.112,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 57,
- "date": "2013-12-08T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59115,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.184Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.500Z",
- "amount": 0.3304,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 57,
- "date": "2013-12-08T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59116,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.225Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.509Z",
- "amount": 0.2072,
- "object": 96,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 57,
- "date": "2013-12-08T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59117,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.517Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.517Z",
- "amount": 0.196,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 2.8,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59118,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.525Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.525Z",
- "amount": 0.2408,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 3.44,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59119,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.534Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.533Z",
- "amount": 0.1512,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 2.16,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59120,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.542Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.542Z",
- "amount": 0.2576,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 3.68,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59121,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.550Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.550Z",
- "amount": 0.2912,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 4.16,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59122,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.558Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.558Z",
- "amount": 0.2856,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 4.08,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59123,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.567Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.567Z",
- "amount": 0.3136,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 4.48,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59124,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.575Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.575Z",
- "amount": 0.1288,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 1.84,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59125,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.583Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.583Z",
- "amount": 0.2296,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 3.28,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59126,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.592Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.591Z",
- "amount": 0.1512,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 2.16,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59127,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.600Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.600Z",
- "amount": 0.2296,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 3.28,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59128,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.608Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.608Z",
- "amount": 0.252,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 3.6,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59129,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.616Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.616Z",
- "amount": 0.2016,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 2.88,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59130,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:49.625Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.624Z",
- "amount": 0.252,
- "object": 96,
- "account": 12,
- "state": "pending",
- "coreHours": 3.6,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59131,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.067Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.640Z",
- "amount": 0.3192,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 54,
- "date": "2013-11-13T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59132,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.109Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.649Z",
- "amount": 0.112,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 54,
- "date": "2013-11-14T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59133,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.150Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.658Z",
- "amount": 0.3136,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 54,
- "date": "2013-11-14T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59134,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.192Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.666Z",
- "amount": 0.2576,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 54,
- "date": "2013-11-14T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59135,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.233Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.674Z",
- "amount": 0.112,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 54,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59136,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.274Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.683Z",
- "amount": 0.1848,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.64,
- "invoice": 54,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59137,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.316Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.691Z",
- "amount": 0.2912,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 54,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59138,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.357Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.699Z",
- "amount": 0.2464,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 54,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59139,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.399Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.707Z",
- "amount": 0.2968,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 54,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59140,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.440Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.716Z",
- "amount": 0.1288,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 54,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59141,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.481Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.724Z",
- "amount": 0.2128,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 54,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59142,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.523Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.732Z",
- "amount": 0.2464,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 54,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59143,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.564Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.740Z",
- "amount": 0.1792,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 54,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59144,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.639Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.749Z",
- "amount": 0.1904,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 55,
- "date": "2013-11-18T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59145,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.680Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.757Z",
- "amount": 0.2408,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 55,
- "date": "2013-11-18T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59146,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.722Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.765Z",
- "amount": 0.2408,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 55,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59147,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.763Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.774Z",
- "amount": 0.196,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 55,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59148,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.805Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.782Z",
- "amount": 0.14,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 55,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59149,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.846Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.790Z",
- "amount": 0.308,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 55,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59150,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.887Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.799Z",
- "amount": 0.2352,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 55,
- "date": "2013-11-20T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59151,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.929Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.807Z",
- "amount": 0.1456,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 55,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59152,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.970Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.815Z",
- "amount": 0.1568,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 55,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59153,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.012Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.823Z",
- "amount": 0.2968,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 55,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59154,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.053Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.832Z",
- "amount": 0.2856,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 55,
- "date": "2013-11-21T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59155,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.095Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.840Z",
- "amount": 0.2408,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 55,
- "date": "2013-11-21T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59156,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.136Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.848Z",
- "amount": 0.1344,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 55,
- "date": "2013-11-22T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59157,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.177Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.857Z",
- "amount": 0.1736,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 55,
- "date": "2013-11-22T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59158,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.219Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.865Z",
- "amount": 0.3304,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 55,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59159,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.260Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.873Z",
- "amount": 0.308,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 55,
- "date": "2013-11-23T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59160,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.302Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.881Z",
- "amount": 0.2856,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 55,
- "date": "2013-11-23T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59161,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.343Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.890Z",
- "amount": 0.3248,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 55,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59162,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.385Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.898Z",
- "amount": 0.2464,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 55,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59163,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.426Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.906Z",
- "amount": 0.2968,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 55,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59164,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.467Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.915Z",
- "amount": 0.224,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 55,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59165,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.517Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.923Z",
- "amount": 0.14,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 56,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59166,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.558Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.931Z",
- "amount": 0.2744,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 56,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59167,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.600Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.939Z",
- "amount": 0.2352,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 56,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59168,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.641Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.948Z",
- "amount": 0.28,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 56,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59169,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.684Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.956Z",
- "amount": 0.28,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 56,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59170,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.726Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.964Z",
- "amount": 0.336,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 56,
- "date": "2013-11-26T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59171,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.767Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.973Z",
- "amount": 0.224,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 56,
- "date": "2013-11-27T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59172,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.809Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.981Z",
- "amount": 0.252,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 56,
- "date": "2013-11-27T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59173,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.850Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.989Z",
- "amount": 0.2688,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 56,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59174,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.891Z",
- "slice": 14,
- "created": "2013-12-13T22:19:49.997Z",
- "amount": 0.2632,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 56,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59175,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.933Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.006Z",
- "amount": 0.2912,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 56,
- "date": "2013-11-28T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59176,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.974Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.014Z",
- "amount": 0.1176,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 56,
- "date": "2013-11-28T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59177,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.016Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.022Z",
- "amount": 0.168,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 56,
- "date": "2013-11-29T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59178,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.057Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.030Z",
- "amount": 0.112,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 56,
- "date": "2013-11-29T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59179,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.098Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.039Z",
- "amount": 0.1848,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.64,
- "invoice": 56,
- "date": "2013-11-29T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59180,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.132Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.047Z",
- "amount": 0.2128,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 56,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59181,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.173Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.055Z",
+ "updated": "2013-12-18T21:29:24.162Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.007Z",
"amount": 0.1624,
- "object": 97,
- "account": 12,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
"coreHours": 2.32,
- "invoice": 56,
- "date": "2013-11-30T14:00:00Z",
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59182,
+ "pk": 60248,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.214Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.064Z",
- "amount": 0.3248,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:24.270Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.015Z",
+ "amount": 0.2184,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.64,
- "invoice": 56,
- "date": "2013-11-30T22:00:00Z",
+ "coreHours": 3.12,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59183,
+ "pk": 60249,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.256Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.072Z",
- "amount": 0.1512,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 56,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59184,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.297Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.080Z",
+ "updated": "2013-12-18T21:29:24.377Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.023Z",
"amount": 0.1176,
- "object": 97,
- "account": 12,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
"coreHours": 1.68,
- "invoice": 56,
- "date": "2013-12-01T14:00:00Z",
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59185,
+ "pk": 60250,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.339Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.088Z",
- "amount": 0.224,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:24.485Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.032Z",
+ "amount": 0.2632,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.2,
- "invoice": 56,
- "date": "2013-12-01T22:00:00Z",
+ "coreHours": 3.76,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59186,
+ "pk": 60251,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.388Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.097Z",
- "amount": 0.2464,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:24.601Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.040Z",
+ "amount": 0.1904,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.52,
- "invoice": 57,
- "date": "2013-12-02T06:00:00Z",
+ "coreHours": 2.72,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59187,
+ "pk": 60252,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.430Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.105Z",
- "amount": 0.1288,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:24.709Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.048Z",
+ "amount": 0.3024,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 1.84,
- "invoice": 57,
- "date": "2013-12-02T14:00:00Z",
+ "coreHours": 4.32,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59188,
+ "pk": 60253,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.471Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.113Z",
- "amount": 0.168,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 57,
- "date": "2013-12-02T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59189,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.513Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.122Z",
+ "updated": "2013-12-18T21:29:24.816Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.056Z",
"amount": 0.2856,
- "object": 97,
- "account": 12,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
"coreHours": 4.08,
- "invoice": 57,
- "date": "2013-12-03T06:00:00Z",
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59190,
+ "pk": 60254,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.554Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.130Z",
- "amount": 0.2744,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 57,
- "date": "2013-12-03T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59191,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.596Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.138Z",
- "amount": 0.224,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 57,
- "date": "2013-12-03T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59192,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.637Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.146Z",
- "amount": 0.2072,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 57,
- "date": "2013-12-04T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59193,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.678Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.155Z",
- "amount": 0.2464,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 57,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59194,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.720Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.163Z",
- "amount": 0.2464,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 57,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59195,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.761Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.171Z",
- "amount": 0.224,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 57,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59196,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.803Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.180Z",
- "amount": 0.2576,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 57,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59197,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.844Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.188Z",
- "amount": 0.2296,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 57,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59198,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.885Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.196Z",
- "amount": 0.1344,
- "object": 97,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 57,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59199,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.927Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.204Z",
+ "updated": "2013-12-18T21:29:24.924Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.065Z",
"amount": 0.3304,
- "object": 97,
- "account": 12,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
"coreHours": 4.72,
- "invoice": 57,
- "date": "2013-12-06T14:00:00Z",
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59200,
+ "pk": 60255,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.968Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.213Z",
- "amount": 0.1232,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:25.032Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.073Z",
+ "amount": 0.3248,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 1.76,
- "invoice": 57,
- "date": "2013-12-06T22:00:00Z",
+ "coreHours": 4.64,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59201,
+ "pk": 60256,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.010Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.221Z",
+ "updated": "2013-12-18T21:29:25.139Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.081Z",
+ "amount": 0.2968,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60257,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.247Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.090Z",
+ "amount": 0.308,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60258,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.355Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.098Z",
+ "amount": 0.3304,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60259,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.462Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.106Z",
+ "amount": 0.252,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60260,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.570Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.114Z",
+ "amount": 0.2744,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60261,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.678Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.123Z",
+ "amount": 0.2632,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60262,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.786Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.131Z",
+ "amount": 0.2016,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60263,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.893Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.140Z",
+ "amount": 0.2688,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60264,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.001Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.148Z",
+ "amount": 0.2856,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60265,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.109Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.156Z",
+ "amount": 0.1848,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60266,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.216Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.164Z",
+ "amount": 0.1176,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60267,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.324Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.173Z",
+ "amount": 0.2016,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60268,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.432Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.181Z",
"amount": 0.224,
- "object": 97,
- "account": 12,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
"coreHours": 3.2,
- "invoice": 57,
- "date": "2013-12-07T06:00:00Z",
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59202,
+ "pk": 60269,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.051Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.229Z",
- "amount": 0.2352,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:26.539Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.189Z",
+ "amount": 0.168,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.36,
- "invoice": 57,
- "date": "2013-12-07T14:00:00Z",
+ "coreHours": 2.4,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59203,
+ "pk": 60270,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.093Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.238Z",
- "amount": 0.2464,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:26.647Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.197Z",
+ "amount": 0.2968,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.52,
- "invoice": 57,
- "date": "2013-12-07T22:00:00Z",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59204,
+ "pk": 60271,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.134Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.246Z",
- "amount": 0.2912,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:26.755Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.206Z",
+ "amount": 0.1568,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 4.16,
- "invoice": 57,
- "date": "2013-12-08T06:00:00Z",
+ "coreHours": 2.24,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59205,
+ "pk": 60272,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.175Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.254Z",
- "amount": 0.2408,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:26.871Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.214Z",
+ "amount": 0.2744,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
- "coreHours": 3.44,
- "invoice": 57,
- "date": "2013-12-08T14:00:00Z",
+ "coreHours": 3.92,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59206,
+ "pk": 60273,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.217Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.262Z",
+ "updated": "2013-12-18T21:29:26.978Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.222Z",
+ "amount": 0.3304,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60274,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.086Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.231Z",
+ "amount": 0.1512,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60275,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.194Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.253Z",
"amount": 0.1288,
- "object": 97,
- "account": 12,
+ "object": 109,
+ "account": 15,
"state": "invoiced",
"coreHours": 1.84,
- "invoice": 57,
- "date": "2013-12-08T22:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59207,
+ "pk": 60276,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.271Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.271Z",
+ "updated": "2013-12-18T21:29:27.301Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.331Z",
+ "amount": 0.252,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60277,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.409Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.346Z",
+ "amount": 0.196,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60278,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.517Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.355Z",
+ "amount": 0.1904,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60279,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.683Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.363Z",
"amount": 0.2408,
- "object": 97,
- "account": 12,
- "state": "pending",
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 3.44,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59208,
+ "pk": 60280,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.279Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.279Z",
- "amount": 0.1568,
- "object": 97,
- "account": 12,
- "state": "pending",
- "coreHours": 2.24,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
+ "updated": "2013-12-18T21:29:27.790Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.371Z",
+ "amount": 0.3136,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59209,
+ "pk": 60281,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.287Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.287Z",
+ "updated": "2013-12-18T21:29:27.898Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.380Z",
+ "amount": 0.2408,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60282,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.006Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.388Z",
"amount": 0.1512,
- "object": 97,
- "account": 12,
- "state": "pending",
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 2.16,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59210,
+ "pk": 60283,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.296Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.296Z",
+ "updated": "2013-12-18T21:29:28.113Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.396Z",
+ "amount": 0.28,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60284,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.221Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.404Z",
+ "amount": 0.2856,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60285,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.329Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.413Z",
+ "amount": 0.1456,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60286,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.436Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.421Z",
+ "amount": 0.3192,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60287,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.544Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.429Z",
+ "amount": 0.3248,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60288,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.652Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.438Z",
+ "amount": 0.2352,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60289,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.759Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.446Z",
+ "amount": 0.1288,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60290,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.867Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.454Z",
+ "amount": 0.28,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60291,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.975Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.462Z",
+ "amount": 0.2464,
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60292,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.083Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.471Z",
"amount": 0.3304,
- "object": 97,
- "account": 12,
- "state": "pending",
+ "object": 109,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 4.72,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59211,
+ "pk": 60293,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.304Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.304Z",
- "amount": 0.1848,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:05.479Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.479Z",
+ "amount": 0.2632,
+ "object": 109,
+ "account": 15,
"state": "pending",
- "coreHours": 2.64,
+ "coreHours": 3.76,
"invoice": null,
- "date": "2013-12-10T14:00:00Z",
+ "date": "2013-12-16T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59212,
+ "pk": 60294,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.312Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.312Z",
- "amount": 0.1232,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:05.487Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.487Z",
+ "amount": 0.1736,
+ "object": 109,
+ "account": 15,
"state": "pending",
- "coreHours": 1.76,
+ "coreHours": 2.48,
"invoice": null,
- "date": "2013-12-10T22:00:00Z",
+ "date": "2013-12-16T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59213,
+ "pk": 60295,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.321Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.321Z",
- "amount": 0.2744,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:05.496Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.495Z",
+ "amount": 0.3248,
+ "object": 109,
+ "account": 15,
"state": "pending",
- "coreHours": 3.92,
+ "coreHours": 4.64,
"invoice": null,
- "date": "2013-12-11T06:00:00Z",
+ "date": "2013-12-16T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59214,
+ "pk": 60296,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.329Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.329Z",
+ "updated": "2013-12-18T21:29:05.504Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.504Z",
+ "amount": 0.1344,
+ "object": 109,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 1.92,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60297,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:05.512Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.512Z",
"amount": 0.1624,
- "object": 97,
- "account": 12,
+ "object": 109,
+ "account": 15,
"state": "pending",
"coreHours": 2.32,
"invoice": null,
- "date": "2013-12-11T14:00:00Z",
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59215,
+ "pk": 60298,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.337Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.337Z",
- "amount": 0.196,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:05.520Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.520Z",
+ "amount": 0.2968,
+ "object": 109,
+ "account": 15,
"state": "pending",
- "coreHours": 2.8,
+ "coreHours": 4.24,
"invoice": null,
- "date": "2013-12-11T22:00:00Z",
+ "date": "2013-12-17T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59216,
+ "pk": 60299,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.345Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.345Z",
- "amount": 0.2688,
- "object": 97,
- "account": 12,
+ "updated": "2013-12-18T21:29:05.529Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.529Z",
+ "amount": 0.1232,
+ "object": 109,
+ "account": 15,
"state": "pending",
- "coreHours": 3.84,
+ "coreHours": 1.76,
"invoice": null,
- "date": "2013-12-12T06:00:00Z",
+ "date": "2013-12-18T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59217,
+ "pk": 60300,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.354Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.354Z",
+ "updated": "2013-12-18T21:29:05.537Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.537Z",
+ "amount": 0.2296,
+ "object": 109,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 3.28,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60301,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.244Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.552Z",
+ "amount": 0.2072,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60302,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.351Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.562Z",
+ "amount": 0.1512,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60303,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.459Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.570Z",
+ "amount": 0.1232,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60304,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.567Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.578Z",
+ "amount": 0.1176,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60305,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.674Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.587Z",
+ "amount": 0.2912,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60306,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.782Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.595Z",
+ "amount": 0.1456,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60307,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.890Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.603Z",
+ "amount": 0.3136,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60308,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.997Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.611Z",
+ "amount": 0.252,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60309,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.105Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.620Z",
+ "amount": 0.2968,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60310,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.213Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.630Z",
+ "amount": 0.2184,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60311,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.321Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.645Z",
+ "amount": 0.3248,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60312,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.428Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.655Z",
+ "amount": 0.1736,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60313,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.536Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.670Z",
+ "amount": 0.2968,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60314,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.644Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.680Z",
+ "amount": 0.1176,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60315,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.751Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.694Z",
+ "amount": 0.224,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60316,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.859Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.705Z",
+ "amount": 0.1624,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60317,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.967Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.719Z",
+ "amount": 0.3192,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60318,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.074Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.730Z",
+ "amount": 0.3304,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60319,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.182Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.738Z",
+ "amount": 0.1288,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60320,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.298Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.747Z",
+ "amount": 0.1736,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60321,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.406Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.755Z",
+ "amount": 0.3304,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60322,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.513Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.763Z",
+ "amount": 0.2296,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60323,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.663Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.771Z",
+ "amount": 0.2072,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60324,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.770Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.780Z",
+ "amount": 0.1456,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60325,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.878Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.788Z",
+ "amount": 0.2856,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60326,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.986Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.796Z",
+ "amount": 0.2352,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60327,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.093Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.804Z",
+ "amount": 0.2408,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60328,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.201Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.813Z",
+ "amount": 0.2128,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60329,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.309Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.821Z",
+ "amount": 0.2408,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60330,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.416Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.829Z",
+ "amount": 0.2296,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60331,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.524Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.838Z",
+ "amount": 0.2576,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60332,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.632Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.846Z",
+ "amount": 0.3304,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60333,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.739Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.854Z",
+ "amount": 0.1176,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60334,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.847Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.862Z",
+ "amount": 0.2072,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60335,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.955Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.871Z",
+ "amount": 0.2632,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60336,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.062Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.879Z",
+ "amount": 0.1736,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60337,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.170Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.887Z",
+ "amount": 0.2632,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60338,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.278Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.896Z",
+ "amount": 0.3136,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60339,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.385Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.904Z",
+ "amount": 0.2744,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60340,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.493Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.912Z",
+ "amount": 0.2856,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60341,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.609Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.921Z",
+ "amount": 0.168,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60342,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.717Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.929Z",
"amount": 0.14,
- "object": 97,
- "account": 12,
- "state": "pending",
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
"coreHours": 2.0,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59218,
+ "pk": 60343,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.362Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.362Z",
+ "updated": "2013-12-18T21:29:24.825Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.937Z",
+ "amount": 0.1288,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60344,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.932Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.945Z",
+ "amount": 0.2632,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60345,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.040Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.954Z",
+ "amount": 0.2912,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60346,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.148Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.962Z",
+ "amount": 0.3304,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60347,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.255Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.970Z",
+ "amount": 0.2688,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60348,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.363Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.978Z",
+ "amount": 0.308,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60349,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.471Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.987Z",
+ "amount": 0.1288,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60350,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.578Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:05.995Z",
+ "amount": 0.3248,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60351,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.686Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.003Z",
+ "amount": 0.2968,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60352,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.794Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.012Z",
+ "amount": 0.3024,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60353,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.902Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.020Z",
+ "amount": 0.224,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60354,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.009Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.028Z",
"amount": 0.1848,
- "object": 97,
- "account": 12,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60355,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.117Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.036Z",
+ "amount": 0.2576,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60356,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.225Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.045Z",
+ "amount": 0.2968,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60357,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.332Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.053Z",
+ "amount": 0.168,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60358,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.440Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.061Z",
+ "amount": 0.1848,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60359,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.548Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.070Z",
+ "amount": 0.2128,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60360,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.655Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.078Z",
+ "amount": 0.1568,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60361,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.763Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.086Z",
+ "amount": 0.2576,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60362,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.879Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.094Z",
+ "amount": 0.1792,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60363,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.987Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.103Z",
+ "amount": 0.2856,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60364,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.094Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.111Z",
+ "amount": 0.1848,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60365,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.202Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.119Z",
+ "amount": 0.1344,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60366,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.310Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.128Z",
+ "amount": 0.1792,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60367,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.418Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.136Z",
+ "amount": 0.196,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60368,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.525Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.144Z",
+ "amount": 0.1232,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60369,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.691Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.153Z",
+ "amount": 0.3192,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60370,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.798Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.161Z",
+ "amount": 0.2184,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60371,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.906Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.169Z",
+ "amount": 0.3192,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60372,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.014Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.177Z",
+ "amount": 0.3024,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60373,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.122Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.186Z",
+ "amount": 0.1288,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60374,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.229Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.194Z",
+ "amount": 0.1456,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60375,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.337Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.202Z",
+ "amount": 0.1288,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60376,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.445Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.210Z",
+ "amount": 0.2632,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60377,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.552Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.219Z",
+ "amount": 0.3192,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60378,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.660Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.227Z",
+ "amount": 0.224,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60379,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.768Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.235Z",
+ "amount": 0.2184,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60380,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.875Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.244Z",
+ "amount": 0.196,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60381,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.983Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.252Z",
+ "amount": 0.28,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60382,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.091Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.260Z",
+ "amount": 0.224,
+ "object": 110,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60383,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:06.269Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.268Z",
+ "amount": 0.3304,
+ "object": 110,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.72,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60384,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:06.277Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.277Z",
+ "amount": 0.1848,
+ "object": 110,
+ "account": 15,
"state": "pending",
"coreHours": 2.64,
"invoice": null,
- "date": "2013-12-12T22:00:00Z",
+ "date": "2013-12-16T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59219,
+ "pk": 60385,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:50.370Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.370Z",
- "amount": 0.2408,
- "object": 97,
- "account": 12,
- "state": "pending",
- "coreHours": 3.44,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59220,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:50.379Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.379Z",
- "amount": 0.2632,
- "object": 97,
- "account": 12,
- "state": "pending",
- "coreHours": 3.76,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59221,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.059Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.393Z",
- "amount": 0.1344,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 54,
- "date": "2013-11-13T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59222,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.100Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.403Z",
- "amount": 0.2408,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 54,
- "date": "2013-11-14T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59223,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.142Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.412Z",
+ "updated": "2013-12-18T21:29:06.285Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.285Z",
"amount": 0.28,
- "object": 98,
- "account": 12,
- "state": "invoiced",
+ "object": 110,
+ "account": 15,
+ "state": "pending",
"coreHours": 4.0,
- "invoice": 54,
- "date": "2013-11-14T14:00:00Z",
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59224,
+ "pk": 60386,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.183Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.420Z",
- "amount": 0.3248,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 54,
- "date": "2013-11-14T22:00:00Z",
+ "updated": "2013-12-18T21:29:06.293Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.293Z",
+ "amount": 0.1176,
+ "object": 110,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 1.68,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59225,
+ "pk": 60387,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.225Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.428Z",
- "amount": 0.2464,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 54,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59226,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.266Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.436Z",
- "amount": 0.224,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 54,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59227,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.307Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.445Z",
- "amount": 0.2912,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 54,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59228,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.349Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.453Z",
- "amount": 0.2912,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 54,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59229,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.390Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.464Z",
+ "updated": "2013-12-18T21:29:06.302Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.302Z",
"amount": 0.2016,
- "object": 98,
- "account": 12,
- "state": "invoiced",
+ "object": 110,
+ "account": 15,
+ "state": "pending",
"coreHours": 2.88,
- "invoice": 54,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59230,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.432Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.470Z",
- "amount": 0.196,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 54,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59231,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.473Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.478Z",
- "amount": 0.2128,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 54,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59232,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.515Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.486Z",
- "amount": 0.3304,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 54,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59233,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.556Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.494Z",
- "amount": 0.3304,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 54,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59234,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.631Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.503Z",
- "amount": 0.252,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 55,
- "date": "2013-11-18T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59235,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.672Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.511Z",
- "amount": 0.308,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 55,
- "date": "2013-11-18T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59236,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.713Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.519Z",
- "amount": 0.3136,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 55,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59237,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.755Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.528Z",
- "amount": 0.2464,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 55,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59238,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.796Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.536Z",
- "amount": 0.2352,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 55,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59239,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.838Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.559Z",
- "amount": 0.2072,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 55,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59240,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.879Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.577Z",
- "amount": 0.252,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 55,
- "date": "2013-11-20T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59241,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.921Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.586Z",
- "amount": 0.1904,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 55,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59242,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.962Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.594Z",
- "amount": 0.3024,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 55,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59243,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.003Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.602Z",
- "amount": 0.1176,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 55,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59244,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.045Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.610Z",
- "amount": 0.2296,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 55,
- "date": "2013-11-21T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59245,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.086Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.619Z",
- "amount": 0.2688,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 55,
- "date": "2013-11-21T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59246,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.128Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.627Z",
- "amount": 0.308,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 55,
- "date": "2013-11-22T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59247,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.169Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.635Z",
- "amount": 0.196,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 55,
- "date": "2013-11-22T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59248,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.210Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.643Z",
- "amount": 0.2296,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 55,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59249,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.252Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.652Z",
- "amount": 0.3192,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 55,
- "date": "2013-11-23T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59250,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.293Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.660Z",
- "amount": 0.2352,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 55,
- "date": "2013-11-23T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59251,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.335Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.668Z",
- "amount": 0.168,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 55,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59252,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.376Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.677Z",
- "amount": 0.3024,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 55,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59253,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.418Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.685Z",
- "amount": 0.2352,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 55,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59254,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.459Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.693Z",
- "amount": 0.1568,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 55,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59255,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.509Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.702Z",
- "amount": 0.3304,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 56,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59256,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.550Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.710Z",
- "amount": 0.1736,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 56,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59257,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.592Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.718Z",
- "amount": 0.168,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.4,
- "invoice": 56,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59258,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.633Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.726Z",
- "amount": 0.14,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 56,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59259,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.676Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.735Z",
- "amount": 0.1176,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 56,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59260,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.717Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.743Z",
- "amount": 0.2688,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 56,
- "date": "2013-11-26T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59261,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.759Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.751Z",
- "amount": 0.308,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 56,
- "date": "2013-11-27T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59262,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.800Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.759Z",
- "amount": 0.196,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 56,
- "date": "2013-11-27T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59263,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.842Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.768Z",
- "amount": 0.196,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 56,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59264,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.883Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.776Z",
- "amount": 0.2464,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 56,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59265,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.925Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.784Z",
- "amount": 0.2968,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 56,
- "date": "2013-11-28T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59266,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.966Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.793Z",
- "amount": 0.1792,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 56,
- "date": "2013-11-28T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59267,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.007Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.801Z",
- "amount": 0.3248,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 56,
- "date": "2013-11-29T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59268,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.049Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.809Z",
- "amount": 0.3192,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 56,
- "date": "2013-11-29T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59269,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.090Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.818Z",
- "amount": 0.1568,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 56,
- "date": "2013-11-29T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59270,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.123Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.826Z",
- "amount": 0.2856,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 56,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59271,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.165Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.834Z",
- "amount": 0.3136,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 56,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59272,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.206Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.843Z",
- "amount": 0.1904,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 56,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59273,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.248Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.851Z",
- "amount": 0.1624,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.32,
- "invoice": 56,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59274,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.289Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.859Z",
- "amount": 0.224,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 56,
- "date": "2013-12-01T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59275,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.331Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.867Z",
- "amount": 0.14,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 56,
- "date": "2013-12-01T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59276,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.380Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.876Z",
- "amount": 0.1456,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 57,
- "date": "2013-12-02T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59277,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.422Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.884Z",
- "amount": 0.1736,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 57,
- "date": "2013-12-02T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59278,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.463Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.892Z",
- "amount": 0.2912,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 57,
- "date": "2013-12-02T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59279,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.504Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.901Z",
- "amount": 0.3192,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 57,
- "date": "2013-12-03T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59280,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.546Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.909Z",
- "amount": 0.1792,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 57,
- "date": "2013-12-03T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59281,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.587Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.917Z",
- "amount": 0.1792,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 57,
- "date": "2013-12-03T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59282,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.629Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.925Z",
- "amount": 0.2184,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 57,
- "date": "2013-12-04T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59283,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.670Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.934Z",
- "amount": 0.3024,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 57,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59284,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.711Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.942Z",
- "amount": 0.112,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 57,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59285,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.753Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.950Z",
- "amount": 0.14,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 57,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59286,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.794Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.958Z",
- "amount": 0.2464,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 57,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59287,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.836Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.967Z",
- "amount": 0.1344,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 57,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59288,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.877Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.975Z",
- "amount": 0.112,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 57,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59289,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.919Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.983Z",
- "amount": 0.2128,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 57,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59290,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.960Z",
- "slice": 14,
- "created": "2013-12-13T22:19:50.991Z",
- "amount": 0.2744,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 57,
- "date": "2013-12-06T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59291,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.001Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.000Z",
- "amount": 0.2632,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 57,
- "date": "2013-12-07T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59292,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.043Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.008Z",
- "amount": 0.3136,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.48,
- "invoice": 57,
- "date": "2013-12-07T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59293,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.084Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.016Z",
- "amount": 0.1232,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 57,
- "date": "2013-12-07T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59294,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.126Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.025Z",
- "amount": 0.2744,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 57,
- "date": "2013-12-08T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59295,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.167Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.033Z",
- "amount": 0.2744,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 57,
- "date": "2013-12-08T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59296,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.209Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.041Z",
- "amount": 0.3192,
- "object": 98,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 57,
- "date": "2013-12-08T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59297,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.049Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.049Z",
- "amount": 0.28,
- "object": 98,
- "account": 12,
- "state": "pending",
- "coreHours": 4.0,
"invoice": null,
- "date": "2013-12-09T06:00:00Z",
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59298,
+ "pk": 60388,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:51.058Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.058Z",
- "amount": 0.1232,
- "object": 98,
- "account": 12,
- "state": "pending",
- "coreHours": 1.76,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59299,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.066Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.066Z",
- "amount": 0.1904,
- "object": 98,
- "account": 12,
- "state": "pending",
- "coreHours": 2.72,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59300,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.074Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.074Z",
- "amount": 0.2408,
- "object": 98,
- "account": 12,
- "state": "pending",
- "coreHours": 3.44,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59301,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.083Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.083Z",
- "amount": 0.2352,
- "object": 98,
- "account": 12,
- "state": "pending",
- "coreHours": 3.36,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59302,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.091Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.091Z",
- "amount": 0.2968,
- "object": 98,
- "account": 12,
- "state": "pending",
- "coreHours": 4.24,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59303,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.099Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.099Z",
+ "updated": "2013-12-18T21:29:06.310Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.310Z",
"amount": 0.2576,
- "object": 98,
- "account": 12,
+ "object": 110,
+ "account": 15,
"state": "pending",
"coreHours": 3.68,
"invoice": null,
- "date": "2013-12-11T06:00:00Z",
+ "date": "2013-12-17T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59304,
+ "pk": 60389,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:51.107Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.107Z",
+ "updated": "2013-12-18T21:29:06.318Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.318Z",
+ "amount": 0.336,
+ "object": 110,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.8,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60390,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:06.326Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.326Z",
+ "amount": 0.3248,
+ "object": 110,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.64,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60391,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.252Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.341Z",
+ "amount": 0.3248,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60392,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.360Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.351Z",
+ "amount": 0.3248,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60393,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.467Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.360Z",
+ "amount": 0.2576,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60394,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.575Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.368Z",
+ "amount": 0.3136,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60395,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.683Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.376Z",
+ "amount": 0.112,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60396,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.790Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.384Z",
+ "amount": 0.28,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60397,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.898Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.393Z",
+ "amount": 0.1344,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60398,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.006Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.401Z",
+ "amount": 0.1176,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60399,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.113Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.409Z",
+ "amount": 0.1176,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60400,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.221Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.417Z",
+ "amount": 0.3024,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60401,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.329Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.426Z",
+ "amount": 0.1232,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60402,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.436Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.434Z",
+ "amount": 0.252,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60403,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.544Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.442Z",
+ "amount": 0.1624,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60404,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.652Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.451Z",
+ "amount": 0.2632,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60405,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.760Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.459Z",
+ "amount": 0.1848,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60406,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.867Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.467Z",
"amount": 0.2184,
- "object": 98,
- "account": 12,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60407,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.975Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.475Z",
+ "amount": 0.2408,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60408,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.083Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.484Z",
+ "amount": 0.2184,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60409,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.190Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.492Z",
+ "amount": 0.1288,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60410,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.306Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.500Z",
+ "amount": 0.2688,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60411,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.414Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.509Z",
+ "amount": 0.2072,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60412,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.522Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.517Z",
+ "amount": 0.1232,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60413,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.671Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.525Z",
+ "amount": 0.1792,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60414,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.779Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.534Z",
+ "amount": 0.3024,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60415,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.886Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.542Z",
+ "amount": 0.1568,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60416,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.994Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.550Z",
+ "amount": 0.1232,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60417,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.102Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.558Z",
+ "amount": 0.3248,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60418,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.209Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.567Z",
+ "amount": 0.14,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60419,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.317Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.575Z",
+ "amount": 0.2352,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60420,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.425Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.583Z",
+ "amount": 0.1568,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60421,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.532Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.591Z",
+ "amount": 0.1288,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60422,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.640Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.600Z",
+ "amount": 0.2912,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60423,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.748Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.608Z",
+ "amount": 0.14,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60424,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.855Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.616Z",
+ "amount": 0.1792,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60425,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.963Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.625Z",
+ "amount": 0.252,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60426,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.071Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.633Z",
+ "amount": 0.196,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60427,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.178Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.641Z",
+ "amount": 0.2744,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60428,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.286Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.650Z",
+ "amount": 0.168,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60429,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.394Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.658Z",
+ "amount": 0.3024,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60430,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.501Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.666Z",
+ "amount": 0.3192,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60431,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.617Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.674Z",
+ "amount": 0.3136,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60432,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.725Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.683Z",
+ "amount": 0.3024,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60433,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.833Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.691Z",
+ "amount": 0.1176,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60434,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.941Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.699Z",
+ "amount": 0.1232,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60435,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.048Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.708Z",
+ "amount": 0.2632,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60436,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.156Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.716Z",
+ "amount": 0.2128,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60437,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.264Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.724Z",
+ "amount": 0.2968,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60438,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.371Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.732Z",
+ "amount": 0.2912,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60439,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.479Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.741Z",
+ "amount": 0.1848,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60440,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.587Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.749Z",
+ "amount": 0.1568,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60441,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.694Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.757Z",
+ "amount": 0.2296,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60442,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.802Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.766Z",
+ "amount": 0.1848,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60443,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.910Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.774Z",
+ "amount": 0.112,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60444,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.017Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.782Z",
+ "amount": 0.2296,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60445,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.125Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.790Z",
+ "amount": 0.1232,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60446,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.233Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.799Z",
+ "amount": 0.1288,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60447,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.341Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.807Z",
+ "amount": 0.1456,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60448,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.448Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.815Z",
+ "amount": 0.252,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60449,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.556Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.823Z",
+ "amount": 0.3136,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60450,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.664Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.832Z",
+ "amount": 0.2408,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60451,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.771Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.840Z",
+ "amount": 0.2016,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60452,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.887Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.848Z",
+ "amount": 0.2464,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60453,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.995Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.857Z",
+ "amount": 0.2856,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60454,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.103Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.865Z",
+ "amount": 0.3192,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60455,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.210Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.873Z",
+ "amount": 0.2576,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60456,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.318Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.881Z",
+ "amount": 0.2072,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60457,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.426Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.890Z",
+ "amount": 0.2184,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60458,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.533Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.898Z",
+ "amount": 0.1344,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60459,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.699Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.906Z",
+ "amount": 0.28,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60460,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.807Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.915Z",
+ "amount": 0.1568,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60461,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.914Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.923Z",
+ "amount": 0.2744,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60462,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.022Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.931Z",
+ "amount": 0.1624,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60463,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.130Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.939Z",
+ "amount": 0.1456,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60464,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.238Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.948Z",
+ "amount": 0.14,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60465,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.345Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.956Z",
+ "amount": 0.224,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60466,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.453Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.964Z",
+ "amount": 0.2688,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60467,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.561Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.972Z",
+ "amount": 0.224,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60468,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.668Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.981Z",
+ "amount": 0.1176,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60469,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.776Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.989Z",
+ "amount": 0.2296,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60470,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.884Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:06.997Z",
+ "amount": 0.2072,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60471,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.991Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.006Z",
+ "amount": 0.1344,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60472,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.099Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.014Z",
+ "amount": 0.2352,
+ "object": 111,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60473,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.022Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.022Z",
+ "amount": 0.308,
+ "object": 111,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.4,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60474,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.031Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.031Z",
+ "amount": 0.14,
+ "object": 111,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 2.0,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60475,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.039Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.039Z",
+ "amount": 0.1344,
+ "object": 111,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 1.92,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60476,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.047Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.047Z",
+ "amount": 0.196,
+ "object": 111,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 2.8,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60477,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.055Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.055Z",
+ "amount": 0.336,
+ "object": 111,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.8,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60478,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.064Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.064Z",
+ "amount": 0.3248,
+ "object": 111,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.64,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60479,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.072Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.072Z",
+ "amount": 0.2912,
+ "object": 111,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.16,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60480,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.080Z",
+ "slice": 6,
+ "created": "2013-12-18T21:29:07.080Z",
+ "amount": 0.28,
+ "object": 111,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 4.0,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60481,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.260Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.112Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60482,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.368Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.122Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60483,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.476Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.130Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60484,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.583Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.138Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60485,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.691Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.147Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60486,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.799Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.155Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60487,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.906Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.163Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60488,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.014Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.171Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60489,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.122Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.180Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60490,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.229Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.188Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60491,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.337Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.196Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60492,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.445Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.205Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60493,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.552Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.213Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60494,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.660Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.221Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60495,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.768Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.230Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60496,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.876Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.238Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60497,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.983Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.246Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60498,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.091Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.254Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60499,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.199Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.262Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60500,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.315Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.271Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60501,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.422Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.279Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60502,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.530Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.287Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60503,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.679Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.296Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60504,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.787Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.304Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60505,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.894Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.312Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60506,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.002Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.321Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60507,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.110Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.329Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60508,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.218Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.337Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60509,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.325Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.345Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60510,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.433Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.354Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60511,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.541Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.362Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60512,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.648Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.370Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60513,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.756Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.378Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60514,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.864Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.387Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60515,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.971Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.395Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60516,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.079Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.403Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60517,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.187Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.412Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60518,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.294Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.420Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60519,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.402Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.428Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60520,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.510Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.436Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60521,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.626Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.445Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60522,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.734Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.453Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60523,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.841Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.461Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60524,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.949Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.470Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60525,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.057Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.478Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60526,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.164Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.497Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60527,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.272Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.547Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60528,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.380Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.561Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60529,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.487Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.569Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60530,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.595Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.577Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60531,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.703Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.586Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60532,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.810Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.594Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60533,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.918Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.602Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60534,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.026Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.610Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60535,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.133Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.619Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60536,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.241Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.627Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60537,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.349Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.635Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60538,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.456Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.644Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60539,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.564Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.652Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60540,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.672Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.660Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60541,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.780Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.669Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60542,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.896Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.677Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60543,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.003Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.685Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60544,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.111Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.693Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60545,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.219Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.702Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60546,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.326Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.710Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60547,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.434Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.718Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60548,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.542Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.726Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60549,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.708Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.735Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60550,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.815Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.743Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60551,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.923Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.751Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60552,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.030Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.760Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60553,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.138Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.768Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60554,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.246Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.776Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60555,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.354Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.784Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60556,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.461Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.793Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60557,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.569Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.801Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60558,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.677Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.809Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60559,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.784Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.817Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60560,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.892Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.826Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60561,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.000Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.834Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60562,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.107Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.842Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60563,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.851Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.851Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60564,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.859Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.859Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60565,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.867Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.867Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60566,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.875Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.875Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60567,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.884Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.884Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60568,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.892Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.892Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60569,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.900Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.900Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60570,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:07.909Z",
+ "slice": 8,
+ "created": "2013-12-18T21:29:07.909Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60571,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.268Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:07.929Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60572,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.376Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:07.942Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60573,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.484Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:07.950Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60574,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.591Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:07.958Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60575,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.699Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:07.967Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60576,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.807Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:07.975Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60577,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.914Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:07.983Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60578,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.022Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:07.991Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60579,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.130Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.000Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60580,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.238Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.008Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60581,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.345Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.016Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60582,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.453Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.025Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60583,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.561Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.033Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60584,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.668Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.041Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60585,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.776Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.049Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60586,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.884Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.058Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60587,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.991Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.066Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60588,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.099Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.074Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60589,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.207Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.082Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60590,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.323Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.091Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60591,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.431Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.099Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60592,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.538Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.107Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60593,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.687Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.116Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60594,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.795Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.124Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60595,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.903Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.132Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60596,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.010Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.141Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60597,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.118Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.149Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60598,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.226Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.157Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60599,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.333Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.166Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60600,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.441Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.174Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60601,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.549Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.182Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60602,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.657Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.190Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60603,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.764Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.199Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60604,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.872Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.207Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60605,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.980Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.215Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60606,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.087Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.224Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60607,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.195Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.232Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60608,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.303Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.240Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60609,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.410Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.249Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60610,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.518Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.257Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60611,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.634Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.265Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60612,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.742Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.273Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60613,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.849Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.282Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60614,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.957Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.290Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60615,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.065Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.298Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60616,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.173Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.306Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60617,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.280Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.315Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60618,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.388Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.323Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60619,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.496Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.331Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60620,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.603Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.339Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60621,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.711Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.348Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60622,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.819Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.356Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60623,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.926Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.364Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60624,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.034Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.373Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60625,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.142Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.381Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60626,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.249Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.389Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60627,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.357Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.397Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60628,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.465Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.406Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60629,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.572Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.414Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60630,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.680Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.422Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60631,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.788Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.431Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60632,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.904Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.439Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60633,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.011Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.447Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60634,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.119Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.455Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60635,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.227Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.464Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60636,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.335Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.472Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60637,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.442Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.480Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60638,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.550Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.489Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60639,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.716Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.497Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60640,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.823Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.505Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60641,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.931Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.513Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60642,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.039Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.522Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60643,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.147Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.530Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60644,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.254Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.538Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60645,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.362Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.546Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60646,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.469Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.555Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60647,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.577Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.563Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60648,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.685Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.571Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60649,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.793Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.580Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60650,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.900Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.588Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60651,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.008Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.596Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60652,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.116Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.605Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60653,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:08.613Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.613Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60654,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:08.621Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.621Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60655,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:08.630Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.629Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60656,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:08.638Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.638Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60657,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:08.646Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.646Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60658,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:08.654Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.654Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60659,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:08.663Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.663Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60660,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:08.671Z",
+ "slice": 9,
+ "created": "2013-12-18T21:29:08.671Z",
+ "amount": 0.56,
+ "object": 112,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60661,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.215Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.698Z",
+ "amount": 0.1848,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 73,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60662,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.240Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.704Z",
+ "amount": 0.2072,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 74,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60663,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.256Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.712Z",
+ "amount": 0.3248,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 74,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60664,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.273Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.721Z",
+ "amount": 0.2352,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 74,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60665,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.290Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.729Z",
+ "amount": 0.3304,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 74,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60666,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.306Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.737Z",
+ "amount": 0.308,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 74,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60667,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.323Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.745Z",
+ "amount": 0.1232,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 74,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60668,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.339Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.754Z",
+ "amount": 0.1568,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 74,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60669,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.356Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.762Z",
+ "amount": 0.2744,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 74,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60670,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.372Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.770Z",
+ "amount": 0.2184,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 74,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60671,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.389Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.779Z",
+ "amount": 0.2184,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 74,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60672,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.406Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.787Z",
+ "amount": 0.14,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 74,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60673,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.424Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.795Z",
+ "amount": 0.2352,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 74,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60674,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.440Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.803Z",
+ "amount": 0.1232,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 74,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60675,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.457Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.812Z",
+ "amount": 0.2016,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 74,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60676,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.473Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.820Z",
+ "amount": 0.28,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 74,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60677,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.490Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.828Z",
+ "amount": 0.2408,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 74,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60678,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.507Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.837Z",
+ "amount": 0.2072,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 74,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60679,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.523Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.845Z",
+ "amount": 0.2296,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 74,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60680,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.548Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.853Z",
+ "amount": 0.28,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 75,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60681,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.565Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.861Z",
+ "amount": 0.3024,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 75,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60682,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.581Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.870Z",
+ "amount": 0.1512,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 75,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60683,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.598Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.878Z",
+ "amount": 0.196,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 75,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60684,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.614Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.886Z",
+ "amount": 0.112,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 75,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60685,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.631Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.894Z",
+ "amount": 0.2688,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 75,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60686,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.648Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.903Z",
+ "amount": 0.336,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 75,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60687,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.664Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.911Z",
+ "amount": 0.2296,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 75,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60688,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.681Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.919Z",
+ "amount": 0.2912,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 75,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60689,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.697Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.928Z",
+ "amount": 0.308,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 75,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60690,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.714Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.936Z",
+ "amount": 0.308,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 75,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60691,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.730Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.944Z",
+ "amount": 0.336,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 75,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60692,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.747Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.952Z",
+ "amount": 0.336,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 75,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60693,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.763Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.961Z",
+ "amount": 0.336,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 75,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60694,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.780Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.969Z",
+ "amount": 0.224,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 75,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60695,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.797Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.977Z",
+ "amount": 0.3304,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 75,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60696,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.813Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.986Z",
+ "amount": 0.3136,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 75,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60697,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.830Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:08.994Z",
+ "amount": 0.2856,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 75,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60698,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.846Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.002Z",
+ "amount": 0.336,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 75,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60699,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.863Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.010Z",
+ "amount": 0.2128,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 75,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60700,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.879Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.019Z",
+ "amount": 0.1456,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 75,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60701,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.904Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.027Z",
+ "amount": 0.2128,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 76,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60702,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.921Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.035Z",
+ "amount": 0.2576,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 76,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60703,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.937Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.044Z",
+ "amount": 0.2856,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 76,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60704,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.954Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.054Z",
+ "amount": 0.2464,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 76,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60705,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.971Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.060Z",
+ "amount": 0.1736,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 76,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60706,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.987Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.068Z",
+ "amount": 0.2464,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 76,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60707,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.004Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.077Z",
+ "amount": 0.2744,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 76,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60708,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.020Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.085Z",
+ "amount": 0.2016,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 76,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60709,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.037Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.093Z",
+ "amount": 0.308,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 76,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60710,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.053Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.102Z",
+ "amount": 0.1288,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 76,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60711,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.070Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.110Z",
+ "amount": 0.1232,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 76,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60712,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.087Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.118Z",
+ "amount": 0.2184,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 76,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60713,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.103Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.126Z",
+ "amount": 0.3192,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 76,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60714,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.120Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.135Z",
+ "amount": 0.3192,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 76,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60715,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.136Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.143Z",
+ "amount": 0.2744,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 76,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60716,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.153Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.151Z",
+ "amount": 0.1232,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 76,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60717,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.169Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.160Z",
+ "amount": 0.2912,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 76,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60718,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.186Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.168Z",
+ "amount": 0.3304,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 76,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60719,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.203Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.176Z",
+ "amount": 0.224,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 76,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60720,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.219Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.185Z",
+ "amount": 0.1456,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 76,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60721,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.236Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.193Z",
+ "amount": 0.3192,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 76,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60722,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.260Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.201Z",
+ "amount": 0.2576,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 77,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60723,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.277Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.209Z",
+ "amount": 0.168,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 77,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60724,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.294Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.218Z",
+ "amount": 0.2856,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 77,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60725,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.319Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.226Z",
+ "amount": 0.1232,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 77,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60726,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.335Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.234Z",
+ "amount": 0.168,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 77,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60727,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.352Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.243Z",
+ "amount": 0.1792,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 77,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60728,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.369Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.251Z",
+ "amount": 0.3192,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 77,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60729,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.385Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.259Z",
+ "amount": 0.1736,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 77,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60730,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.402Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.267Z",
+ "amount": 0.196,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 77,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60731,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.418Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.276Z",
+ "amount": 0.112,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 77,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60732,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.435Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.284Z",
+ "amount": 0.2856,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 77,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60733,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.451Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.292Z",
+ "amount": 0.1568,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 77,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60734,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.468Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.300Z",
+ "amount": 0.2408,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 77,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60735,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.485Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.309Z",
+ "amount": 0.2912,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 77,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60736,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.501Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.317Z",
+ "amount": 0.1512,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 77,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60737,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.518Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.325Z",
+ "amount": 0.2632,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 77,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60738,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.534Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.334Z",
+ "amount": 0.2744,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 77,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60739,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.551Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.342Z",
+ "amount": 0.1512,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 77,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60740,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.567Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.350Z",
+ "amount": 0.2856,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 77,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60741,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.584Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.358Z",
+ "amount": 0.2856,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 77,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60742,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.601Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.367Z",
+ "amount": 0.3136,
+ "object": 105,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 77,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60743,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:09.375Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.375Z",
+ "amount": 0.1176,
+ "object": 105,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 1.68,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60744,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:09.383Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.383Z",
+ "amount": 0.2128,
+ "object": 105,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 3.04,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60745,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:09.392Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.392Z",
+ "amount": 0.28,
+ "object": 105,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 4.0,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60746,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:09.400Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.400Z",
+ "amount": 0.224,
+ "object": 105,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 3.2,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60747,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:09.408Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.408Z",
+ "amount": 0.2184,
+ "object": 105,
+ "account": 16,
"state": "pending",
"coreHours": 3.12,
"invoice": null,
- "date": "2013-12-11T14:00:00Z",
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59305,
+ "pk": 60748,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:51.116Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.116Z",
+ "updated": "2013-12-18T21:29:09.416Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.416Z",
+ "amount": 0.2464,
+ "object": 105,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 3.52,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60749,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:09.425Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.425Z",
+ "amount": 0.308,
+ "object": 105,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 4.4,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60750,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:09.433Z",
+ "slice": 11,
+ "created": "2013-12-18T21:29:09.433Z",
+ "amount": 0.3024,
+ "object": 105,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 4.32,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60751,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.232Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.456Z",
+ "amount": 0.2352,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 74,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60752,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.248Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.466Z",
+ "amount": 0.308,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 74,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60753,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.265Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.474Z",
+ "amount": 0.2576,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 74,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60754,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.281Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.483Z",
+ "amount": 0.3192,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 74,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60755,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.298Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.491Z",
+ "amount": 0.1904,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 74,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60756,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.314Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.499Z",
+ "amount": 0.3136,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 74,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60757,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.331Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.508Z",
+ "amount": 0.1176,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 74,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60758,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.347Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.516Z",
+ "amount": 0.28,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 74,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60759,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.364Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.524Z",
+ "amount": 0.1232,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 74,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60760,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.381Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.532Z",
+ "amount": 0.3136,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 74,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60761,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.397Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.541Z",
+ "amount": 0.1456,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 74,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60762,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.414Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.549Z",
+ "amount": 0.2576,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 74,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60763,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.432Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.557Z",
+ "amount": 0.2016,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 74,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60764,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.448Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.565Z",
+ "amount": 0.3024,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 74,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60765,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.465Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.574Z",
+ "amount": 0.3136,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 74,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60766,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.482Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.582Z",
+ "amount": 0.2128,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 74,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60767,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.498Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.590Z",
"amount": 0.1848,
- "object": 98,
- "account": 12,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 74,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60768,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.515Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.599Z",
+ "amount": 0.3136,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 74,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60769,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.531Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.607Z",
+ "amount": 0.1456,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 74,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60770,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.556Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.615Z",
+ "amount": 0.2576,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 75,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60771,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.573Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.623Z",
+ "amount": 0.2912,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 75,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60772,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.589Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.632Z",
+ "amount": 0.2744,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 75,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60773,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.606Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.640Z",
+ "amount": 0.2296,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 75,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60774,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.623Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.649Z",
+ "amount": 0.308,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 75,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60775,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.639Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.657Z",
+ "amount": 0.1736,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 75,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60776,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.656Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.665Z",
+ "amount": 0.1176,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 75,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60777,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.672Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.673Z",
+ "amount": 0.1736,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 75,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60778,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.689Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.682Z",
+ "amount": 0.2968,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 75,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60779,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.706Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.690Z",
+ "amount": 0.252,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 75,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60780,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.722Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.698Z",
+ "amount": 0.2632,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 75,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60781,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.739Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.706Z",
+ "amount": 0.1456,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 75,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60782,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.755Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.715Z",
+ "amount": 0.1512,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 75,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60783,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.772Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.723Z",
+ "amount": 0.2072,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 75,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60784,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.788Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.731Z",
+ "amount": 0.1624,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 75,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60785,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.805Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.740Z",
+ "amount": 0.1848,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 75,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60786,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.821Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.748Z",
+ "amount": 0.1176,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 75,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60787,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.838Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.756Z",
+ "amount": 0.196,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 75,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60788,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.855Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.764Z",
+ "amount": 0.1792,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 75,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60789,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.871Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.773Z",
+ "amount": 0.2408,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 75,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60790,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.888Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.781Z",
+ "amount": 0.14,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 75,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60791,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.913Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.789Z",
+ "amount": 0.112,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 76,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60792,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.929Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.798Z",
+ "amount": 0.3136,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 76,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60793,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.946Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.806Z",
+ "amount": 0.1456,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 76,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60794,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.962Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.814Z",
+ "amount": 0.2912,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 76,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60795,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.979Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.822Z",
+ "amount": 0.2128,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 76,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60796,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.995Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.831Z",
+ "amount": 0.1848,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 76,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60797,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.012Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.839Z",
+ "amount": 0.3304,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 76,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60798,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.029Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.847Z",
+ "amount": 0.28,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 76,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60799,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.045Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.855Z",
+ "amount": 0.308,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 76,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60800,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.062Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.864Z",
+ "amount": 0.3304,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 76,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60801,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.078Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.872Z",
+ "amount": 0.2464,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 76,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60802,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.095Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.880Z",
+ "amount": 0.3136,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 76,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60803,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.111Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.889Z",
+ "amount": 0.112,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 76,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60804,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.128Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.897Z",
+ "amount": 0.2744,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 76,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60805,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.145Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.905Z",
+ "amount": 0.1792,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 76,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60806,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.161Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.913Z",
+ "amount": 0.1568,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 76,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60807,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.178Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.922Z",
+ "amount": 0.2408,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 76,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60808,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.194Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.930Z",
+ "amount": 0.1176,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 76,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60809,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.211Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.938Z",
+ "amount": 0.1176,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 76,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60810,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.227Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.947Z",
+ "amount": 0.3304,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 76,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60811,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.244Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.955Z",
+ "amount": 0.196,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 76,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60812,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.269Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.963Z",
+ "amount": 0.2744,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 77,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60813,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.285Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.971Z",
+ "amount": 0.1792,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 77,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60814,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.302Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.980Z",
+ "amount": 0.112,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 77,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60815,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.327Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.988Z",
+ "amount": 0.2296,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 77,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60816,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.344Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:09.996Z",
+ "amount": 0.1232,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 77,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60817,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.360Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.005Z",
+ "amount": 0.1848,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 77,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60818,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.377Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.013Z",
+ "amount": 0.2296,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 77,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60819,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.393Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.021Z",
+ "amount": 0.2968,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 77,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60820,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.410Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.029Z",
+ "amount": 0.112,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 77,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60821,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.427Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.038Z",
+ "amount": 0.2576,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 77,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60822,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.443Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.046Z",
+ "amount": 0.2856,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 77,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60823,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.460Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.054Z",
+ "amount": 0.2576,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 77,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60824,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.476Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.063Z",
+ "amount": 0.2688,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 77,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60825,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.493Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.071Z",
+ "amount": 0.252,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 77,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60826,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.509Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.079Z",
+ "amount": 0.14,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 77,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60827,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.526Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.087Z",
+ "amount": 0.3304,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 77,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60828,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.543Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.096Z",
+ "amount": 0.3304,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 77,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60829,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.559Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.104Z",
+ "amount": 0.1848,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 77,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60830,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.576Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.112Z",
+ "amount": 0.2856,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 77,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60831,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.592Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.120Z",
+ "amount": 0.2912,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 77,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60832,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:30.609Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.129Z",
+ "amount": 0.252,
+ "object": 113,
+ "account": 16,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 77,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60833,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.137Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.137Z",
+ "amount": 0.14,
+ "object": 113,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 2.0,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60834,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.146Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.146Z",
+ "amount": 0.14,
+ "object": 113,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 2.0,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60835,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.154Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.154Z",
+ "amount": 0.2184,
+ "object": 113,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 3.12,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60836,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.162Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.162Z",
+ "amount": 0.1904,
+ "object": 113,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 2.72,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60837,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.170Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.170Z",
+ "amount": 0.1624,
+ "object": 113,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 2.32,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60838,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.179Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.179Z",
+ "amount": 0.252,
+ "object": 113,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 3.6,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60839,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.187Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.187Z",
+ "amount": 0.1904,
+ "object": 113,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 2.72,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60840,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.195Z",
+ "slice": 12,
+ "created": "2013-12-18T21:29:10.195Z",
+ "amount": 0.224,
+ "object": 113,
+ "account": 16,
+ "state": "pending",
+ "coreHours": 3.2,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 60841,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.277Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.227Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60842,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.384Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.237Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60843,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.492Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.245Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60844,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.600Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.253Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60845,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.707Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.262Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60846,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.815Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.270Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60847,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.923Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.278Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60848,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.031Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.286Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60849,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.138Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.295Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60850,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.246Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.303Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60851,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.354Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.311Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60852,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.461Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.319Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60853,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.569Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.328Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60854,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.677Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.336Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60855,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.784Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.344Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60856,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.892Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.352Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60857,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.000Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.361Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60858,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.107Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.369Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60859,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.215Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.377Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60860,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.331Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.386Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60861,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.439Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.394Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60862,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.559Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.402Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60863,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.696Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.410Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60864,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.803Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.419Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60865,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.911Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.427Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60866,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.019Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.435Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60867,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.126Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.444Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60868,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.234Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.452Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60869,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.342Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.460Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60870,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.449Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.468Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60871,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.557Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.477Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60872,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.665Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.485Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60873,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.773Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.493Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60874,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.880Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.502Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60875,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.988Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.510Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60876,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.096Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.518Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60877,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.203Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.526Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60878,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.311Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.535Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60879,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.419Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.543Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60880,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.526Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.551Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60881,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.642Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.560Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60882,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.750Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.568Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60883,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.858Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.576Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60884,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.965Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.584Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60885,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.073Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.593Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60886,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.181Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.601Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60887,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.289Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.609Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60888,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.396Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.618Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60889,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.504Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.626Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60890,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.612Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.634Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60891,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.719Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.643Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60892,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.827Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.651Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60893,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.935Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.659Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60894,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.042Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.668Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60895,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.150Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.676Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60896,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.258Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.684Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60897,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.365Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.692Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60898,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.473Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.701Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60899,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.581Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.709Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60900,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.689Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.717Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60901,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.796Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.725Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60902,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.912Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.734Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60903,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.020Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.742Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60904,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.127Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.750Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60905,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.235Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.759Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60906,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.343Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.767Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60907,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.451Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.775Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60908,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.558Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.783Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60909,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.724Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.792Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60910,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.832Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.800Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60911,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.939Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.808Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60912,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.047Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.816Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60913,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.155Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.825Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60914,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.262Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.833Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60915,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.370Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.841Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60916,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.478Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.850Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60917,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.585Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.858Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60918,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.693Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.866Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60919,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.801Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.874Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60920,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.909Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.883Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60921,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.016Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.891Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60922,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.124Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.899Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60923,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.908Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.908Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60924,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.916Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.916Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60925,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.924Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.924Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60926,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.932Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.932Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60927,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.941Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.941Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60928,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.949Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.949Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60929,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.957Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.957Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60930,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:10.966Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.966Z",
+ "amount": 0.56,
+ "object": 114,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60931,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.285Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.981Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60932,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.393Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.990Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60933,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.500Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:10.999Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60934,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.608Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.007Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60935,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.716Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.015Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60936,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.823Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.024Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60937,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.931Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.032Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60938,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.039Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.040Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60939,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.147Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.048Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60940,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.254Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.057Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60941,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.362Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.065Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60942,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.470Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.073Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60943,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.577Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.081Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60944,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.685Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.090Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60945,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.793Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.098Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60946,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.900Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.106Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60947,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.008Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.115Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60948,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.116Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.123Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60949,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.223Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.131Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60950,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.339Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.140Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60951,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.447Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.148Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60952,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.596Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.156Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60953,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.704Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.164Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60954,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.812Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.173Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60955,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.919Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.181Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60956,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.027Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.189Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60957,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.135Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.197Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60958,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.242Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.206Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60959,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.350Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.214Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60960,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.458Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.222Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60961,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.565Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.231Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60962,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.673Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.239Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60963,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.781Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.247Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60964,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.889Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.255Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60965,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.996Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.264Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60966,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.104Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.272Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60967,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.212Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.280Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60968,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.319Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.289Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60969,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.427Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.297Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60970,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.535Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.305Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60971,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.651Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.313Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60972,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.758Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.322Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60973,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.866Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.330Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60974,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.974Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.338Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60975,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.081Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.346Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60976,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.189Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.355Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60977,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.297Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.363Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60978,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.404Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.371Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60979,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.512Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.380Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60980,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.620Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.388Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60981,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.728Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.396Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60982,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.835Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.404Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60983,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.943Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.413Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60984,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.051Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.421Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60985,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.158Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.429Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60986,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.266Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.438Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60987,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.374Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.446Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60988,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.481Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.454Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60989,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.589Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.463Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60990,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.697Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.471Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60991,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.804Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.479Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60992,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.920Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.487Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60993,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.028Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.496Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60994,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.136Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.504Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60995,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.244Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.512Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60996,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.351Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.521Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60997,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.459Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.529Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60998,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.584Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.537Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 60999,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.732Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.545Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61000,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.840Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.554Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61001,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.948Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.562Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61002,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.055Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.570Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61003,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.163Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.579Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61004,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.271Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.587Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61005,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.378Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.595Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61006,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.486Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.603Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61007,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.594Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.612Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61008,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.702Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.620Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61009,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.809Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.628Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61010,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.917Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.637Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61011,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.024Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.645Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61012,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.132Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.653Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61013,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:11.662Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.662Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61014,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:11.670Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.670Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61015,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:11.678Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.678Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61016,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:11.686Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.686Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61017,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:11.695Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.695Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61018,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:11.703Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.703Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61019,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:11.711Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.711Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61020,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:11.719Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.719Z",
+ "amount": 0.56,
+ "object": 115,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61021,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.293Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.734Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61022,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.401Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.744Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61023,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.509Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.753Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61024,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.616Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.761Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61025,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.724Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.769Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61026,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.832Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.777Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61027,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:20.939Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.786Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61028,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.047Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.794Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61029,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.155Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.802Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61030,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.262Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.810Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61031,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.370Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.819Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61032,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.478Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.827Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61033,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.586Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.835Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61034,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.693Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.844Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61035,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.801Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.852Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61036,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:21.909Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.860Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61037,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.016Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.868Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61038,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.124Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.877Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61039,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.232Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.885Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 69,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61040,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.348Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.893Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61041,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.455Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.902Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61042,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.604Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.910Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61043,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.712Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.918Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61044,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.820Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.927Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61045,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:22.928Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.935Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61046,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.035Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.943Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61047,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.143Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.951Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61048,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.251Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.960Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61049,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.358Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.968Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61050,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.466Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.976Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61051,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.574Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.984Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61052,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.681Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:11.993Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61053,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.789Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.001Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61054,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:23.897Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.009Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61055,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.004Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.018Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61056,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.112Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.026Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61057,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.220Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.034Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61058,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.328Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.042Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61059,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.435Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.051Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61060,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.543Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.059Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 70,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61061,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.659Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.067Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61062,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.767Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.076Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61063,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.874Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.084Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61064,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:24.982Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.092Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61065,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.090Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.100Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61066,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.197Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.109Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61067,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.305Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.117Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61068,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.413Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.125Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61069,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.520Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.134Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61070,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.628Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.142Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61071,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.736Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.150Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61072,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.844Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.159Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61073,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:25.951Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.167Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61074,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.059Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.175Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61075,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.167Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.183Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61076,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.274Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.192Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61077,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.382Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.200Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61078,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.490Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.208Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61079,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.597Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.217Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61080,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.705Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.225Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61081,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.813Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.233Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 71,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61082,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:26.929Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.242Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61083,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.036Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.250Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61084,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.144Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.258Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61085,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.252Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.266Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61086,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.359Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.275Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61087,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.467Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.283Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61088,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.628Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.291Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61089,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.741Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.299Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61090,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.848Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.308Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61091,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:27.956Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.316Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61092,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.064Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.324Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61093,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.171Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.333Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61094,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.279Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.341Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61095,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.387Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.349Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61096,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.494Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.357Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61097,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.602Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.366Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61098,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.710Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.374Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61099,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.817Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.382Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61100,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:28.925Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.391Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61101,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.033Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.399Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61102,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:29.141Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.407Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "invoiced",
+ "coreHours": 8.0,
+ "invoice": 72,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61103,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:12.415Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.415Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61104,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:12.424Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.424Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61105,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:12.432Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.432Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61106,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:12.440Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.440Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61107,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:12.449Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.448Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61108,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:12.457Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.457Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61109,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:12.465Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.465Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61110,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:12.473Z",
+ "slice": 13,
+ "created": "2013-12-18T21:29:12.473Z",
+ "amount": 0.56,
+ "object": 116,
+ "account": 15,
+ "state": "pending",
+ "coreHours": 8.0,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "reservation"
+ }
+},
+{
+ "pk": 61111,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.468Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.505Z",
+ "amount": 0.2856,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 64,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61112,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.510Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.565Z",
+ "amount": 0.3136,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 64,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61113,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.551Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.573Z",
+ "amount": 0.308,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 64,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61114,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.593Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.581Z",
+ "amount": 0.2072,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 64,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61115,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.634Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.589Z",
+ "amount": 0.2072,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 64,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61116,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.675Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.598Z",
+ "amount": 0.252,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 64,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61117,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.717Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.606Z",
+ "amount": 0.2688,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 64,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61118,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.758Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.614Z",
+ "amount": 0.3136,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 64,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61119,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.800Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.622Z",
+ "amount": 0.3248,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 64,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61120,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.841Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.631Z",
+ "amount": 0.2072,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 64,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61121,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.883Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.639Z",
+ "amount": 0.2576,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 64,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61122,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.924Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.647Z",
+ "amount": 0.14,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 64,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61123,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.966Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.656Z",
+ "amount": 0.1512,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 64,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61124,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.007Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.664Z",
+ "amount": 0.28,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 64,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61125,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.048Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.672Z",
+ "amount": 0.2408,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 64,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61126,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.090Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.680Z",
+ "amount": 0.308,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 64,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61127,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.131Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.689Z",
+ "amount": 0.2856,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 64,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61128,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.173Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.697Z",
+ "amount": 0.1232,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 64,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61129,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.220Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.705Z",
+ "amount": 0.1848,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 64,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61130,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.289Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.714Z",
+ "amount": 0.2016,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 65,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61131,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.344Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.722Z",
+ "amount": 0.2296,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 65,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61132,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.385Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.730Z",
+ "amount": 0.2968,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 65,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61133,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.427Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.739Z",
+ "amount": 0.1736,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 65,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61134,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.468Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.747Z",
+ "amount": 0.336,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 65,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61135,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.510Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.755Z",
+ "amount": 0.308,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 65,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61136,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.626Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.763Z",
+ "amount": 0.2744,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 65,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61137,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.667Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.772Z",
+ "amount": 0.2016,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 65,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61138,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.709Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.780Z",
+ "amount": 0.1512,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 65,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61139,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.750Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.788Z",
+ "amount": 0.2912,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 65,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61140,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.791Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.797Z",
+ "amount": 0.3248,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 65,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61141,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.833Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.805Z",
+ "amount": 0.3192,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 65,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61142,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.874Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.813Z",
+ "amount": 0.1736,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 65,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61143,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.916Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.821Z",
+ "amount": 0.2632,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 65,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61144,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.957Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.830Z",
+ "amount": 0.2464,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 65,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61145,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.999Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.838Z",
+ "amount": 0.3192,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 65,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61146,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.040Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.846Z",
+ "amount": 0.28,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 65,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61147,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.081Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.854Z",
+ "amount": 0.1288,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 65,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61148,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.123Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.863Z",
+ "amount": 0.1568,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 65,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61149,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.164Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.871Z",
+ "amount": 0.1904,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 65,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61150,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.206Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.879Z",
+ "amount": 0.3136,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 65,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61151,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.255Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.888Z",
+ "amount": 0.1456,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 66,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61152,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.297Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.896Z",
+ "amount": 0.2464,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 66,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61153,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.338Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.904Z",
+ "amount": 0.2464,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 66,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61154,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.379Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.913Z",
+ "amount": 0.2016,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 66,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61155,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.421Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.921Z",
+ "amount": 0.1736,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 66,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61156,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.462Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.929Z",
+ "amount": 0.2408,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 66,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61157,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.504Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.937Z",
+ "amount": 0.2912,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 66,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61158,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.545Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.946Z",
+ "amount": 0.1288,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 66,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61159,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.587Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.954Z",
+ "amount": 0.2632,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 66,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61160,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.628Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.962Z",
+ "amount": 0.3024,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 66,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61161,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.670Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.970Z",
+ "amount": 0.2296,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 66,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61162,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.711Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.979Z",
+ "amount": 0.3304,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 66,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61163,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.752Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.987Z",
+ "amount": 0.1176,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 66,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61164,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.794Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:12.995Z",
+ "amount": 0.28,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 66,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61165,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.835Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.004Z",
+ "amount": 0.224,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 66,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61166,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.877Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.012Z",
+ "amount": 0.2688,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 66,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61167,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.918Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.020Z",
+ "amount": 0.1568,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 66,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61168,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.959Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.028Z",
+ "amount": 0.1624,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 66,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61169,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.001Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.037Z",
+ "amount": 0.2688,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 66,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61170,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.042Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.045Z",
+ "amount": 0.2912,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 66,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61171,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.084Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.053Z",
+ "amount": 0.1344,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 66,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61172,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.133Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.062Z",
+ "amount": 0.196,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 67,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61173,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.175Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.070Z",
+ "amount": 0.2184,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 67,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61174,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.216Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.078Z",
+ "amount": 0.3304,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 67,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61175,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.258Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.086Z",
+ "amount": 0.2184,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 67,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61176,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.299Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.095Z",
+ "amount": 0.1176,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 67,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61177,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.341Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.103Z",
+ "amount": 0.1624,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 67,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61178,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.382Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.111Z",
+ "amount": 0.2968,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 67,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61179,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.423Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.120Z",
+ "amount": 0.1344,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 67,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61180,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.465Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.128Z",
+ "amount": 0.3136,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 67,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61181,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.506Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.136Z",
+ "amount": 0.1344,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 67,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61182,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.548Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.153Z",
+ "amount": 0.112,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 67,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61183,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.589Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.161Z",
+ "amount": 0.1176,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 67,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61184,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.630Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.170Z",
+ "amount": 0.1456,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 67,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61185,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.672Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.178Z",
+ "amount": 0.308,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 67,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61186,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.713Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.186Z",
+ "amount": 0.28,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 67,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61187,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.755Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.195Z",
+ "amount": 0.336,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 67,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61188,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.796Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.203Z",
+ "amount": 0.1344,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 67,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61189,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.804Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.220Z",
+ "amount": 0.3136,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 67,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61190,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.846Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.228Z",
+ "amount": 0.3024,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 67,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61191,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.887Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.236Z",
+ "amount": 0.112,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 67,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61192,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.929Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.245Z",
+ "amount": 0.2856,
+ "object": 117,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 67,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61193,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:13.253Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.253Z",
+ "amount": 0.1288,
+ "object": 117,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 1.84,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61194,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:13.261Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.261Z",
+ "amount": 0.336,
+ "object": 117,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 4.8,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61195,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:13.278Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.278Z",
+ "amount": 0.1624,
+ "object": 117,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 2.32,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61196,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:13.286Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.286Z",
+ "amount": 0.1904,
+ "object": 117,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 2.72,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61197,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:13.294Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.294Z",
+ "amount": 0.3192,
+ "object": 117,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 4.56,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61198,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:13.303Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.303Z",
+ "amount": 0.14,
+ "object": 117,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 2.0,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61199,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:13.311Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.311Z",
+ "amount": 0.1288,
+ "object": 117,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 1.84,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61200,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:13.319Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.319Z",
+ "amount": 0.2632,
+ "object": 117,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 3.76,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61201,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.427Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.334Z",
+ "amount": 0.2968,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 63,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61202,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.477Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.344Z",
+ "amount": 0.2072,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 64,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61203,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.518Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.352Z",
+ "amount": 0.2968,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 64,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61204,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.560Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.361Z",
+ "amount": 0.2296,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 64,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61205,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.601Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.369Z",
+ "amount": 0.14,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 64,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61206,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.642Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.377Z",
+ "amount": 0.2968,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 64,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61207,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.684Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.385Z",
+ "amount": 0.1512,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 64,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61208,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.725Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.394Z",
+ "amount": 0.336,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 64,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61209,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.767Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.402Z",
+ "amount": 0.2688,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 64,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61210,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.808Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.410Z",
+ "amount": 0.308,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 64,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61211,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.850Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.418Z",
+ "amount": 0.1792,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 64,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61212,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.891Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.427Z",
+ "amount": 0.3304,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 64,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61213,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.932Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.435Z",
+ "amount": 0.1288,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 64,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61214,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.974Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.443Z",
+ "amount": 0.2352,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 64,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61215,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.015Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.452Z",
+ "amount": 0.3304,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 64,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61216,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.057Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.460Z",
+ "amount": 0.2912,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 64,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61217,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.098Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.468Z",
+ "amount": 0.1512,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 64,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61218,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.140Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.476Z",
+ "amount": 0.112,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 64,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61219,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.181Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.485Z",
+ "amount": 0.3136,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 64,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61220,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.239Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.493Z",
+ "amount": 0.1512,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 65,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61221,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.303Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.501Z",
+ "amount": 0.2016,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 65,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61222,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.352Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.510Z",
+ "amount": 0.2968,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 65,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61223,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.394Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.518Z",
+ "amount": 0.1736,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 65,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61224,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.435Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.526Z",
+ "amount": 0.3304,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 65,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61225,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.477Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.534Z",
+ "amount": 0.3248,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 65,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61226,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.531Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.543Z",
+ "amount": 0.1344,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 65,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61227,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.634Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.551Z",
+ "amount": 0.1904,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 65,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61228,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.676Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.559Z",
+ "amount": 0.2576,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 65,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61229,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.717Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.567Z",
+ "amount": 0.3024,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 65,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61230,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.758Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.576Z",
+ "amount": 0.336,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 65,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61231,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.800Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.584Z",
+ "amount": 0.2016,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 65,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61232,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.841Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.592Z",
+ "amount": 0.14,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 65,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61233,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.882Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.601Z",
+ "amount": 0.14,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 65,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61234,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.924Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.609Z",
+ "amount": 0.1232,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 65,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61235,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.965Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.617Z",
+ "amount": 0.3136,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 65,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61236,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.007Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.626Z",
+ "amount": 0.3024,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 65,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61237,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.048Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.634Z",
+ "amount": 0.2968,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 65,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61238,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.090Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.642Z",
+ "amount": 0.3192,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 65,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61239,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.131Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.651Z",
+ "amount": 0.196,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 65,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61240,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.172Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.659Z",
+ "amount": 0.1344,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 65,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61241,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.222Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.667Z",
+ "amount": 0.1512,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 66,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61242,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.264Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.675Z",
+ "amount": 0.3304,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 66,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61243,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.305Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.684Z",
+ "amount": 0.1904,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 66,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61244,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.346Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.692Z",
+ "amount": 0.2912,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 66,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61245,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.388Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.700Z",
+ "amount": 0.3136,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 66,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61246,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.429Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.709Z",
+ "amount": 0.28,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 66,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61247,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.471Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.717Z",
+ "amount": 0.2856,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 66,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61248,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.512Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.725Z",
+ "amount": 0.1176,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 66,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61249,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.553Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.733Z",
+ "amount": 0.1736,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 66,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61250,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.595Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.742Z",
+ "amount": 0.2184,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 66,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61251,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.637Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.750Z",
+ "amount": 0.1624,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 66,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61252,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.678Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.758Z",
+ "amount": 0.3192,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 66,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61253,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.719Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.767Z",
+ "amount": 0.2856,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 66,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61254,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.761Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.775Z",
+ "amount": 0.112,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 66,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61255,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.802Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.783Z",
+ "amount": 0.2688,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 66,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61256,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.843Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.791Z",
+ "amount": 0.1176,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 66,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61257,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.885Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.800Z",
+ "amount": 0.2688,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 66,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61258,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.926Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.808Z",
+ "amount": 0.2296,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 66,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61259,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.968Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.816Z",
+ "amount": 0.224,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 66,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61260,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.009Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.824Z",
+ "amount": 0.2856,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 66,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61261,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.051Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.833Z",
+ "amount": 0.224,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 66,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61262,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.100Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.841Z",
+ "amount": 0.2576,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 67,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61263,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.142Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.849Z",
+ "amount": 0.2296,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 67,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61264,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.183Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.858Z",
+ "amount": 0.2632,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 67,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61265,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.224Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.866Z",
+ "amount": 0.2856,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 67,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61266,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.266Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.874Z",
+ "amount": 0.336,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 67,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61267,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.307Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.882Z",
+ "amount": 0.3136,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 67,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61268,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.349Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.891Z",
+ "amount": 0.2968,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 67,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61269,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.390Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.899Z",
+ "amount": 0.1904,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 67,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61270,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.432Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.907Z",
+ "amount": 0.2184,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 67,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61271,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.473Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.916Z",
+ "amount": 0.2352,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 67,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61272,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.514Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.924Z",
+ "amount": 0.1176,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 67,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61273,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.556Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.932Z",
+ "amount": 0.2464,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 67,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61274,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.597Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.940Z",
+ "amount": 0.3136,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 67,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61275,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.639Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.949Z",
+ "amount": 0.196,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 67,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61276,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.680Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.957Z",
+ "amount": 0.1624,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 67,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61277,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.722Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.965Z",
+ "amount": 0.1232,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 67,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61278,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.763Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.974Z",
+ "amount": 0.2296,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 67,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61279,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.813Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.982Z",
+ "amount": 0.28,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 67,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61280,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.854Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.990Z",
+ "amount": 0.2016,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 67,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61281,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.895Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:13.998Z",
+ "amount": 0.1624,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 67,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61282,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.937Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.007Z",
+ "amount": 0.2912,
+ "object": 118,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 67,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61283,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:14.015Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.015Z",
+ "amount": 0.1344,
+ "object": 118,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 1.92,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61284,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:14.023Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.023Z",
+ "amount": 0.1848,
+ "object": 118,
+ "account": 14,
"state": "pending",
"coreHours": 2.64,
"invoice": null,
- "date": "2013-12-11T22:00:00Z",
+ "date": "2013-12-16T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59306,
+ "pk": 61285,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:51.124Z",
+ "updated": "2013-12-18T21:29:14.032Z",
"slice": 14,
- "created": "2013-12-13T22:19:51.124Z",
+ "created": "2013-12-18T21:29:14.031Z",
+ "amount": 0.2128,
+ "object": 118,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 3.04,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61286,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:14.040Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.040Z",
"amount": 0.2464,
- "object": 98,
- "account": 12,
+ "object": 118,
+ "account": 14,
"state": "pending",
"coreHours": 3.52,
"invoice": null,
- "date": "2013-12-12T06:00:00Z",
+ "date": "2013-12-17T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59307,
+ "pk": 61287,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:51.132Z",
+ "updated": "2013-12-18T21:29:14.048Z",
"slice": 14,
- "created": "2013-12-13T22:19:51.132Z",
- "amount": 0.112,
- "object": 98,
- "account": 12,
+ "created": "2013-12-18T21:29:14.048Z",
+ "amount": 0.2352,
+ "object": 118,
+ "account": 14,
"state": "pending",
- "coreHours": 1.6,
+ "coreHours": 3.36,
"invoice": null,
- "date": "2013-12-12T14:00:00Z",
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59308,
+ "pk": 61288,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:51.141Z",
+ "updated": "2013-12-18T21:29:14.056Z",
"slice": 14,
- "created": "2013-12-13T22:19:51.141Z",
- "amount": 0.2632,
- "object": 98,
- "account": 12,
+ "created": "2013-12-18T21:29:14.056Z",
+ "amount": 0.2128,
+ "object": 118,
+ "account": 14,
"state": "pending",
- "coreHours": 3.76,
+ "coreHours": 3.04,
"invoice": null,
- "date": "2013-12-12T22:00:00Z",
+ "date": "2013-12-17T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59309,
+ "pk": 61289,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:51.149Z",
+ "updated": "2013-12-18T21:29:14.065Z",
"slice": 14,
- "created": "2013-12-13T22:19:51.149Z",
- "amount": 0.3248,
- "object": 98,
- "account": 12,
- "state": "pending",
- "coreHours": 4.64,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59310,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.157Z",
- "slice": 14,
- "created": "2013-12-13T22:19:51.157Z",
- "amount": 0.1288,
- "object": 98,
- "account": 12,
- "state": "pending",
- "coreHours": 1.84,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59311,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.432Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.189Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59312,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.523Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.199Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59313,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.614Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.207Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59314,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.706Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.215Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59315,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.797Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.223Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59316,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.888Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.232Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59317,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.996Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.240Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59318,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.087Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.248Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59319,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.178Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.257Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59320,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.270Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.265Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59321,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.352Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.273Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59322,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.444Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.281Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59323,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.535Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.290Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59324,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.634Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.298Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59325,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.737Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.306Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59326,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.828Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.315Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59327,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.919Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.323Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59328,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.010Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.331Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59329,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.101Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.340Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59330,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.192Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.348Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59331,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.284Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.356Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59332,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.377Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.364Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59333,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.468Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.373Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59334,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.560Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.381Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59335,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.667Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.389Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59336,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.758Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.398Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59337,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.850Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.406Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59338,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.965Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.414Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59339,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.057Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.422Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59340,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.148Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.431Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59341,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.273Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.439Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59342,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.537Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.447Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59343,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.777Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.455Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59344,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.868Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.464Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59345,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.968Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.472Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59346,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.059Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.480Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59347,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.150Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.489Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59348,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.246Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.497Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59349,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.337Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.505Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59350,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.428Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.513Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59351,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.519Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.522Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59352,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.610Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.530Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59353,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.701Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.538Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59354,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.793Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.546Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59355,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.884Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.555Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59356,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.975Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.563Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59357,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.066Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.571Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59358,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.157Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.580Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59359,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.248Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.588Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59360,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.339Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.596Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59361,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.432Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.604Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59362,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.523Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.613Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59363,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.614Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.621Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59364,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.705Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.629Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59365,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.797Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.638Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59366,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.896Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.646Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59367,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.987Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.654Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59368,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.078Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.662Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59369,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.169Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.671Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59370,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.260Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.679Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59371,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.352Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.687Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59372,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.443Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.696Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59373,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.534Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.704Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59374,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.625Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.712Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59375,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.716Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.720Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59376,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.807Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.729Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59377,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.898Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.737Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59378,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.989Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.745Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59379,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.081Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.754Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59380,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.178Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.762Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59381,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.269Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.770Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59382,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.361Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.778Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59383,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.452Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.787Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59384,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.543Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.795Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59385,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.634Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.803Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59386,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.725Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.812Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59387,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.820Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.820Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59388,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.828Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.828Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59389,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.837Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.837Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59390,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.845Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.845Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59391,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.853Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.853Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59392,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.861Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.861Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59393,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.870Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.870Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59394,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.878Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.878Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59395,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.886Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.886Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59396,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.895Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.895Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59397,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.903Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.903Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59398,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.911Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.911Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59399,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.919Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.919Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59400,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:51.928Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.928Z",
- "amount": 0.56,
- "object": 99,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59401,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.424Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.943Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-13T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59402,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.515Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.952Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59403,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.606Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.961Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59404,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.697Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.969Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59405,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.788Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.977Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59406,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.880Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.986Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59407,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.988Z",
- "slice": 13,
- "created": "2013-12-13T22:19:51.994Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59408,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.079Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.002Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59409,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.170Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.010Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59410,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.261Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.019Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59411,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.344Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.027Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59412,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.435Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.035Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59413,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.526Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.044Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59414,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.626Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.052Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59415,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.729Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.060Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59416,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.820Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.068Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59417,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.911Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.077Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59418,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.002Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.085Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59419,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.093Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.093Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59420,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.184Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.102Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59421,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.275Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.110Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59422,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.367Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.118Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59423,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.460Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.126Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59424,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.551Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.135Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59425,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.659Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.143Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59426,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.750Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.151Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59427,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.841Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.159Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59428,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.957Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.168Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59429,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.048Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.176Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59430,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.139Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.184Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59431,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.230Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.193Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59432,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.512Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.201Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59433,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.769Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.209Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59434,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.860Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.217Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59435,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.959Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.226Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59436,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.050Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.234Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59437,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.141Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.242Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59438,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.238Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.251Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59439,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.329Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.259Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59440,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.420Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.267Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59441,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.511Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.276Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59442,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.602Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.284Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59443,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.693Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.292Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59444,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.784Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.300Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59445,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.875Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.309Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59446,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.966Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.317Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59447,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.058Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.325Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59448,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.149Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.334Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59449,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.240Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.342Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59450,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.331Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.350Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59451,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.424Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.358Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59452,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.515Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.367Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59453,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.606Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.375Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59454,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.697Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.383Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59455,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.788Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.392Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59456,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.888Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.400Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59457,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.979Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.408Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59458,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.070Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.416Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59459,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.161Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.425Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59460,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.252Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.433Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59461,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.343Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.441Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59462,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.434Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.450Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59463,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.526Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.458Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59464,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.617Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.466Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59465,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.708Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.474Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59466,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.799Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.483Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59467,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.890Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.491Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59468,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.981Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.499Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59469,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.072Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.507Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59470,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.170Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.516Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59471,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.261Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.524Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59472,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.352Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.532Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59473,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.443Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.541Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59474,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.535Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.549Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59475,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.626Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.557Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59476,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.717Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.565Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59477,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.574Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.574Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59478,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.582Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.582Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59479,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.590Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.590Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59480,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.599Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.599Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59481,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.607Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.607Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59482,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.615Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.615Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59483,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.623Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.623Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59484,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.632Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.632Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59485,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.640Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.640Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59486,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.648Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.648Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59487,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.657Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.657Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59488,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.665Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.665Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59489,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.673Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.673Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59490,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:52.682Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.681Z",
- "amount": 0.56,
- "object": 100,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59491,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.407Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.696Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 58,
- "date": "2013-11-13T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59492,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.507Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.706Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59493,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.598Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.715Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59494,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.689Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.723Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-14T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59495,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.780Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.731Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59496,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.871Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.739Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59497,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.980Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.748Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-15T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59498,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.071Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.756Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59499,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.162Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.764Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59500,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.253Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.773Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-16T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59501,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.377Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.781Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59502,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.468Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.789Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59503,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.559Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.798Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 59,
- "date": "2013-11-17T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59504,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.659Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.806Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59505,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.762Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.814Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59506,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.853Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.822Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-18T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59507,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:59.944Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.831Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59508,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.035Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.839Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59509,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.126Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.847Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-19T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59510,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.217Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.856Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59511,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.309Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.864Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59512,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.402Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.872Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-20T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59513,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.493Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.880Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59514,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.584Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.889Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59515,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.692Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.897Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-21T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59516,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.783Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.905Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59517,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.874Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.913Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59518,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:00.990Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.922Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-22T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59519,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.081Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.930Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59520,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.172Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.938Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59521,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.338Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.947Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-23T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59522,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.678Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.955Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59523,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.802Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.963Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59524,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.893Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.971Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 60,
- "date": "2013-11-24T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59525,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:01.992Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.980Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59526,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.084Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.988Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59527,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.175Z",
- "slice": 13,
- "created": "2013-12-13T22:19:52.996Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-25T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59528,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.271Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.005Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59529,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.362Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.013Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59530,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.453Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.021Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-26T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59531,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.544Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.029Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59532,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.635Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.038Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59533,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.726Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.046Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-27T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59534,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.817Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.054Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59535,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:02.909Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.063Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59536,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.000Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.071Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-28T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59537,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.099Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.079Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59538,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.190Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.087Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59539,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.281Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.096Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-29T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59540,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.373Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.104Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59541,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.465Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.112Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59542,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.556Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.120Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-11-30T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59543,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.647Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.129Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59544,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.739Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.137Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59545,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.821Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.145Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 61,
- "date": "2013-12-01T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59546,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:03.921Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.154Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59547,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.012Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.162Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59548,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.103Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.170Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-02T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59549,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.194Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.178Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59550,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.285Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.187Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59551,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.376Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.195Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-03T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59552,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.467Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.203Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59553,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.559Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.212Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59554,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.650Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.220Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-04T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59555,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.741Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.228Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59556,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.832Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.237Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59557,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:04.923Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.245Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-05T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59558,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.023Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.253Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59559,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.120Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.261Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59560,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.212Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.270Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-06T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59561,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.303Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.278Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59562,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.394Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.286Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59563,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.485Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.295Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-07T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59564,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.576Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.303Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59565,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.667Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.311Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59566,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:20:05.758Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.319Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "invoiced",
- "coreHours": 8.0,
- "invoice": 62,
- "date": "2013-12-08T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59567,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.328Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.328Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59568,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.336Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.336Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59569,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.344Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.344Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59570,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.353Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.352Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59571,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.361Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.361Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59572,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.369Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.369Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59573,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.377Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.377Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59574,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.386Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.386Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59575,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.394Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.394Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59576,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.402Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.402Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59577,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.411Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.410Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59578,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.419Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.419Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59579,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.427Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.427Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59580,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:53.435Z",
- "slice": 13,
- "created": "2013-12-13T22:19:53.435Z",
- "amount": 0.56,
- "object": 101,
- "account": 13,
- "state": "pending",
- "coreHours": 8.0,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "reservation"
- }
-},
-{
- "pk": 59581,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.051Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.467Z",
+ "created": "2013-12-18T21:29:14.065Z",
"amount": 0.14,
- "object": 102,
- "account": 12,
+ "object": 118,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 2.0,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61290,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:14.073Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.073Z",
+ "amount": 0.1792,
+ "object": 118,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 2.56,
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61291,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.444Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.088Z",
+ "amount": 0.1232,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 64,
+ "date": "2013-11-18T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61292,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.485Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.098Z",
+ "amount": 0.1288,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 64,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61293,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.527Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.106Z",
+ "amount": 0.2856,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 64,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61294,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.568Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.114Z",
+ "amount": 0.14,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 2.0,
- "invoice": 54,
- "date": "2013-11-13T22:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-19T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59582,
+ "pk": 61295,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.092Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.477Z",
- "amount": 0.3024,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:16.609Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.123Z",
+ "amount": 0.3136,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 4.32,
- "invoice": 54,
- "date": "2013-11-14T06:00:00Z",
+ "coreHours": 4.48,
+ "invoice": 64,
+ "date": "2013-11-20T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59583,
+ "pk": 61296,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.134Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.485Z",
- "amount": 0.1512,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 54,
- "date": "2013-11-14T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59584,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.175Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.493Z",
- "amount": 0.2464,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 54,
- "date": "2013-11-14T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59585,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.216Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.502Z",
- "amount": 0.224,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 54,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59586,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.258Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.510Z",
- "amount": 0.2464,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 54,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59587,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.299Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.518Z",
- "amount": 0.336,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 54,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59588,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.341Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.527Z",
- "amount": 0.308,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 54,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59589,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.382Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.535Z",
- "amount": 0.2184,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 54,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59590,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.423Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.543Z",
- "amount": 0.2352,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 54,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59591,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.465Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.551Z",
- "amount": 0.2072,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 54,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59592,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.506Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.560Z",
- "amount": 0.2128,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 54,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59593,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.548Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.568Z",
- "amount": 0.252,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 54,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59594,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.622Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.576Z",
+ "updated": "2013-12-18T21:29:16.651Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.131Z",
"amount": 0.1792,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 2.56,
- "invoice": 55,
- "date": "2013-11-18T06:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-20T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59595,
+ "pk": 61297,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.664Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.584Z",
- "amount": 0.196,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:16.692Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.139Z",
+ "amount": 0.252,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 2.8,
- "invoice": 55,
- "date": "2013-11-18T14:00:00Z",
+ "coreHours": 3.6,
+ "invoice": 64,
+ "date": "2013-11-20T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59596,
+ "pk": 61298,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.705Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.593Z",
- "amount": 0.2632,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 55,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59597,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.747Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.601Z",
- "amount": 0.1344,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 55,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59598,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.788Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.609Z",
- "amount": 0.3192,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 55,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59599,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.830Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.618Z",
- "amount": 0.1176,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 55,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59600,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.871Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.626Z",
+ "updated": "2013-12-18T21:29:16.734Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.148Z",
"amount": 0.2464,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 3.52,
- "invoice": 55,
- "date": "2013-11-20T06:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-21T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59601,
+ "pk": 61299,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.912Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.634Z",
- "amount": 0.336,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 55,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59602,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.954Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.642Z",
- "amount": 0.3248,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 55,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59603,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.995Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.651Z",
- "amount": 0.2856,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 55,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59604,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.036Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.659Z",
- "amount": 0.2296,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.28,
- "invoice": 55,
- "date": "2013-11-21T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59605,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.078Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.667Z",
- "amount": 0.2128,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 55,
- "date": "2013-11-21T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59606,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.119Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.676Z",
- "amount": 0.252,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 55,
- "date": "2013-11-22T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59607,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.161Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.684Z",
- "amount": 0.1904,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 55,
- "date": "2013-11-22T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59608,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.202Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.692Z",
- "amount": 0.1736,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 55,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59609,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.244Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.700Z",
- "amount": 0.2912,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 55,
- "date": "2013-11-23T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59610,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.285Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.709Z",
- "amount": 0.14,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 55,
- "date": "2013-11-23T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59611,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.327Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.717Z",
- "amount": 0.3304,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 55,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59612,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.368Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.725Z",
- "amount": 0.1344,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.92,
- "invoice": 55,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59613,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.409Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.734Z",
- "amount": 0.2352,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 55,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59614,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.451Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.742Z",
- "amount": 0.2352,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 55,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59615,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.500Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.750Z",
- "amount": 0.2856,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 56,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59616,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.542Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.758Z",
- "amount": 0.1176,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 56,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59617,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.583Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.767Z",
- "amount": 0.3304,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 56,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59618,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.625Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.775Z",
- "amount": 0.1288,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 56,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59619,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.668Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.783Z",
- "amount": 0.1904,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.72,
- "invoice": 56,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59620,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.709Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.792Z",
+ "updated": "2013-12-18T21:29:16.775Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.156Z",
"amount": 0.2184,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 3.12,
- "invoice": 56,
- "date": "2013-11-26T22:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-21T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59621,
+ "pk": 61300,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.751Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.800Z",
- "amount": 0.2016,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 56,
- "date": "2013-11-27T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59622,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.792Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.808Z",
- "amount": 0.2856,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 56,
- "date": "2013-11-27T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59623,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.833Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.816Z",
- "amount": 0.3024,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 56,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59624,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.875Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.825Z",
- "amount": 0.1232,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.76,
- "invoice": 56,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59625,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.916Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.833Z",
+ "updated": "2013-12-18T21:29:16.816Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.164Z",
"amount": 0.252,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 3.6,
- "invoice": 56,
- "date": "2013-11-28T14:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-21T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59626,
+ "pk": 61301,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.958Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.841Z",
- "amount": 0.224,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:16.858Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.172Z",
+ "amount": 0.1624,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 3.2,
- "invoice": 56,
- "date": "2013-11-28T22:00:00Z",
+ "coreHours": 2.32,
+ "invoice": 64,
+ "date": "2013-11-22T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59627,
+ "pk": 61302,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.999Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.850Z",
- "amount": 0.336,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 56,
- "date": "2013-11-29T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59628,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.041Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.858Z",
- "amount": 0.336,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 56,
- "date": "2013-11-29T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59629,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.082Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.866Z",
- "amount": 0.1512,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 56,
- "date": "2013-11-29T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59630,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.115Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.874Z",
- "amount": 0.112,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 56,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59631,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.156Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.883Z",
- "amount": 0.3304,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.72,
- "invoice": 56,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59632,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.198Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.891Z",
- "amount": 0.112,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 56,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59633,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.239Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.899Z",
- "amount": 0.14,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 56,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59634,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.281Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.908Z",
- "amount": 0.2912,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 56,
- "date": "2013-12-01T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59635,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.322Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.916Z",
+ "updated": "2013-12-18T21:29:16.899Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.181Z",
"amount": 0.2072,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 2.96,
- "invoice": 56,
- "date": "2013-12-01T22:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-22T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59636,
+ "pk": 61303,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.372Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.924Z",
+ "updated": "2013-12-18T21:29:16.941Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.189Z",
+ "amount": 0.1904,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 64,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61304,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.982Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.197Z",
+ "amount": 0.2856,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 64,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61305,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.024Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.206Z",
+ "amount": 0.2016,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 64,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61306,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.065Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.214Z",
+ "amount": 0.2184,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 64,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61307,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.106Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.222Z",
+ "amount": 0.14,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 64,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61308,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.148Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.230Z",
+ "amount": 0.1288,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 64,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61309,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.189Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.239Z",
+ "amount": 0.2632,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 64,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61310,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.253Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.247Z",
+ "amount": 0.2856,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 65,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61311,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.314Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.255Z",
+ "amount": 0.1568,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 65,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61312,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.361Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.264Z",
+ "amount": 0.2352,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 65,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61313,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.402Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.272Z",
+ "amount": 0.2352,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 65,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61314,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.443Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.280Z",
+ "amount": 0.3304,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 65,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61315,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.485Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.288Z",
+ "amount": 0.2408,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 65,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61316,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.601Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.297Z",
+ "amount": 0.2912,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 65,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61317,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.642Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.305Z",
"amount": 0.2688,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 3.84,
- "invoice": 57,
- "date": "2013-12-02T06:00:00Z",
+ "invoice": 65,
+ "date": "2013-11-27T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59637,
+ "pk": 61318,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.413Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.932Z",
- "amount": 0.196,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:17.684Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.313Z",
+ "amount": 0.168,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 2.8,
- "invoice": 57,
- "date": "2013-12-02T14:00:00Z",
+ "coreHours": 2.4,
+ "invoice": 65,
+ "date": "2013-11-27T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59638,
+ "pk": 61319,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.455Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.941Z",
- "amount": 0.1232,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:17.725Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.322Z",
+ "amount": 0.1792,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 1.76,
- "invoice": 57,
- "date": "2013-12-02T22:00:00Z",
+ "coreHours": 2.56,
+ "invoice": 65,
+ "date": "2013-11-28T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59639,
+ "pk": 61320,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.496Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.949Z",
- "amount": 0.308,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:17.767Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.330Z",
+ "amount": 0.2184,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 4.4,
- "invoice": 57,
- "date": "2013-12-03T06:00:00Z",
+ "coreHours": 3.12,
+ "invoice": 65,
+ "date": "2013-11-28T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59640,
+ "pk": 61321,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.538Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.957Z",
- "amount": 0.2688,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:17.808Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.338Z",
+ "amount": 0.1848,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 3.84,
- "invoice": 57,
- "date": "2013-12-03T14:00:00Z",
+ "coreHours": 2.64,
+ "invoice": 65,
+ "date": "2013-11-28T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59641,
+ "pk": 61322,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.579Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.966Z",
+ "updated": "2013-12-18T21:29:17.849Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.346Z",
+ "amount": 0.1792,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 65,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61323,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.891Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.355Z",
"amount": 0.112,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 1.6,
- "invoice": 57,
- "date": "2013-12-03T22:00:00Z",
+ "invoice": 65,
+ "date": "2013-11-29T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59642,
+ "pk": 61324,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.620Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.974Z",
+ "updated": "2013-12-18T21:29:17.932Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.363Z",
+ "amount": 0.3136,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 65,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61325,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.974Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.371Z",
+ "amount": 0.1568,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 65,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61326,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.015Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.380Z",
+ "amount": 0.3024,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 65,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61327,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.057Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.388Z",
+ "amount": 0.336,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 65,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61328,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.098Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.396Z",
"amount": 0.28,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 4.0,
- "invoice": 57,
- "date": "2013-12-04T06:00:00Z",
+ "invoice": 65,
+ "date": "2013-12-01T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59643,
+ "pk": 61329,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.662Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.982Z",
+ "updated": "2013-12-18T21:29:18.139Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.404Z",
+ "amount": 0.3136,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 65,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61330,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.181Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.413Z",
+ "amount": 0.1176,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 65,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61331,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.231Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.421Z",
+ "amount": 0.3248,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 66,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61332,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.272Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.429Z",
+ "amount": 0.1288,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 66,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61333,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.313Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.437Z",
+ "amount": 0.1848,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 66,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61334,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.355Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.446Z",
+ "amount": 0.168,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 66,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61335,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.396Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.454Z",
+ "amount": 0.1624,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 66,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61336,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.438Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.462Z",
+ "amount": 0.112,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 66,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61337,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.479Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.471Z",
+ "amount": 0.2184,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 66,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61338,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.520Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.479Z",
+ "amount": 0.2576,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 66,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61339,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.562Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.487Z",
+ "amount": 0.2072,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 66,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61340,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.603Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.495Z",
+ "amount": 0.1232,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.76,
+ "invoice": 66,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61341,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.645Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.504Z",
+ "amount": 0.2632,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.76,
+ "invoice": 66,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61342,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.686Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.512Z",
+ "amount": 0.14,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 66,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61343,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.728Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.520Z",
+ "amount": 0.196,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 66,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61344,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.769Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.529Z",
+ "amount": 0.2576,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 66,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61345,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.810Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.537Z",
+ "amount": 0.168,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 66,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61346,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.852Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.545Z",
+ "amount": 0.2464,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 66,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61347,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.893Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.553Z",
+ "amount": 0.336,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 66,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61348,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.935Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.562Z",
+ "amount": 0.2464,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 66,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61349,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.976Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.570Z",
+ "amount": 0.2576,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 66,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61350,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.017Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.578Z",
+ "amount": 0.1736,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 66,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61351,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.059Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.587Z",
"amount": 0.3024,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 4.32,
- "invoice": 57,
- "date": "2013-12-04T14:00:00Z",
+ "invoice": 66,
+ "date": "2013-12-08T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59644,
+ "pk": 61352,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.703Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.990Z",
- "amount": 0.1512,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:19.109Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.595Z",
+ "amount": 0.1848,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 2.16,
- "invoice": 57,
- "date": "2013-12-04T22:00:00Z",
+ "coreHours": 2.64,
+ "invoice": 67,
+ "date": "2013-12-09T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59645,
+ "pk": 61353,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.745Z",
- "slice": 15,
- "created": "2013-12-13T22:19:53.999Z",
- "amount": 0.14,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:19.150Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.603Z",
+ "amount": 0.3024,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 2.0,
- "invoice": 57,
- "date": "2013-12-05T06:00:00Z",
+ "coreHours": 4.32,
+ "invoice": 67,
+ "date": "2013-12-09T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59646,
+ "pk": 61354,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.786Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.007Z",
- "amount": 0.14,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 57,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59647,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.828Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.015Z",
- "amount": 0.14,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.0,
- "invoice": 57,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59648,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.869Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.024Z",
- "amount": 0.2632,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 57,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59649,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.910Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.032Z",
- "amount": 0.2632,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.76,
- "invoice": 57,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59650,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.952Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.040Z",
+ "updated": "2013-12-18T21:29:19.191Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.611Z",
"amount": 0.2856,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 4.08,
- "invoice": 57,
- "date": "2013-12-06T22:00:00Z",
+ "invoice": 67,
+ "date": "2013-12-09T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59651,
+ "pk": 61355,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.993Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.048Z",
- "amount": 0.2744,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:19.233Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.620Z",
+ "amount": 0.3136,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 3.92,
- "invoice": 57,
- "date": "2013-12-07T06:00:00Z",
+ "coreHours": 4.48,
+ "invoice": 67,
+ "date": "2013-12-10T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59652,
+ "pk": 61356,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.035Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.057Z",
+ "updated": "2013-12-18T21:29:19.274Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.628Z",
+ "amount": 0.1176,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 67,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61357,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.316Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.636Z",
+ "amount": 0.2072,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 67,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61358,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.357Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.645Z",
"amount": 0.2632,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
"coreHours": 3.76,
- "invoice": 57,
- "date": "2013-12-07T14:00:00Z",
+ "invoice": 67,
+ "date": "2013-12-11T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59653,
+ "pk": 61359,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.076Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.065Z",
- "amount": 0.1176,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:19.398Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.653Z",
+ "amount": 0.2408,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 1.68,
- "invoice": 57,
- "date": "2013-12-07T22:00:00Z",
+ "coreHours": 3.44,
+ "invoice": 67,
+ "date": "2013-12-11T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59654,
+ "pk": 61360,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.117Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.073Z",
- "amount": 0.1792,
- "object": 102,
- "account": 12,
+ "updated": "2013-12-18T21:29:19.440Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.661Z",
+ "amount": 0.2744,
+ "object": 119,
+ "account": 14,
"state": "invoiced",
- "coreHours": 2.56,
- "invoice": 57,
- "date": "2013-12-08T06:00:00Z",
+ "coreHours": 3.92,
+ "invoice": 67,
+ "date": "2013-12-11T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59655,
+ "pk": 61361,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.159Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.081Z",
- "amount": 0.1456,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 57,
- "date": "2013-12-08T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59656,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.200Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.090Z",
- "amount": 0.1176,
- "object": 102,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 57,
- "date": "2013-12-08T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59657,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.098Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.098Z",
- "amount": 0.2464,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 3.52,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59658,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.106Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.106Z",
- "amount": 0.252,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 3.6,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59659,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.115Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.115Z",
- "amount": 0.2016,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 2.88,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59660,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.123Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.123Z",
+ "updated": "2013-12-18T21:29:19.481Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.669Z",
"amount": 0.3024,
- "object": 102,
- "account": 12,
- "state": "pending",
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
"coreHours": 4.32,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
+ "invoice": 67,
+ "date": "2013-12-12T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59661,
+ "pk": 61362,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.131Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.131Z",
- "amount": 0.3192,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 4.56,
- "invoice": null,
- "date": "2013-12-10T14:00:00Z",
+ "updated": "2013-12-18T21:29:19.523Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.678Z",
+ "amount": 0.1848,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 67,
+ "date": "2013-12-12T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59662,
+ "pk": 61363,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.140Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.139Z",
- "amount": 0.336,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 4.8,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
+ "updated": "2013-12-18T21:29:19.564Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.686Z",
+ "amount": 0.168,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 67,
+ "date": "2013-12-12T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59663,
+ "pk": 61364,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.148Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.148Z",
+ "updated": "2013-12-18T21:29:19.606Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.694Z",
+ "amount": 0.2576,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 67,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61365,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.647Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.702Z",
"amount": 0.3024,
- "object": 102,
- "account": 12,
- "state": "pending",
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
"coreHours": 4.32,
- "invoice": null,
- "date": "2013-12-11T06:00:00Z",
+ "invoice": 67,
+ "date": "2013-12-13T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59664,
+ "pk": 61366,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.156Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.156Z",
- "amount": 0.2128,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 3.04,
- "invoice": null,
- "date": "2013-12-11T14:00:00Z",
+ "updated": "2013-12-18T21:29:19.688Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.711Z",
+ "amount": 0.28,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 67,
+ "date": "2013-12-13T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59665,
+ "pk": 61367,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.164Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.164Z",
- "amount": 0.2296,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 3.28,
- "invoice": null,
- "date": "2013-12-11T22:00:00Z",
+ "updated": "2013-12-18T21:29:19.730Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.719Z",
+ "amount": 0.224,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 67,
+ "date": "2013-12-14T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59666,
+ "pk": 61368,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.173Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.173Z",
+ "updated": "2013-12-18T21:29:19.771Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.727Z",
+ "amount": 0.1736,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 67,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61369,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.821Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.736Z",
+ "amount": 0.3136,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 67,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61370,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.862Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.744Z",
+ "amount": 0.2352,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 67,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61371,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.904Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.752Z",
+ "amount": 0.28,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 67,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61372,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.945Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.761Z",
+ "amount": 0.2184,
+ "object": 119,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 67,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61373,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:14.769Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.769Z",
"amount": 0.1288,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "pending",
"coreHours": 1.84,
"invoice": null,
- "date": "2013-12-12T06:00:00Z",
+ "date": "2013-12-16T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59667,
+ "pk": 61374,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.181Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.181Z",
- "amount": 0.2912,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 4.16,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59668,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.189Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.189Z",
- "amount": 0.224,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 3.2,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59669,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.197Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.197Z",
- "amount": 0.168,
- "object": 102,
- "account": 12,
- "state": "pending",
- "coreHours": 2.4,
- "invoice": null,
- "date": "2013-12-13T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59670,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.206Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.206Z",
+ "updated": "2013-12-18T21:29:14.777Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.777Z",
"amount": 0.3136,
- "object": 102,
- "account": 12,
+ "object": 119,
+ "account": 14,
"state": "pending",
"coreHours": 4.48,
"invoice": null,
- "date": "2013-12-13T14:00:00Z",
+ "date": "2013-12-16T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59671,
+ "pk": 61375,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.034Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.221Z",
- "amount": 0.1176,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.68,
- "invoice": 53,
- "date": "2013-11-13T22:00:00Z",
+ "updated": "2013-12-18T21:29:14.785Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.785Z",
+ "amount": 0.1456,
+ "object": 119,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 2.08,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59672,
+ "pk": 61376,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.084Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.231Z",
- "amount": 0.2968,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 54,
- "date": "2013-11-14T06:00:00Z",
+ "updated": "2013-12-18T21:29:14.794Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.794Z",
+ "amount": 0.3192,
+ "object": 119,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 4.56,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59673,
+ "pk": 61377,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.125Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.239Z",
- "amount": 0.2016,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 54,
- "date": "2013-11-14T14:00:00Z",
+ "updated": "2013-12-18T21:29:14.802Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.802Z",
+ "amount": 0.1456,
+ "object": 119,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 2.08,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59674,
+ "pk": 61378,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.167Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.247Z",
- "amount": 0.224,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 54,
- "date": "2013-11-14T22:00:00Z",
+ "updated": "2013-12-18T21:29:14.810Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.810Z",
+ "amount": 0.3304,
+ "object": 119,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 4.72,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59675,
+ "pk": 61379,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.208Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.255Z",
- "amount": 0.308,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.4,
- "invoice": 54,
- "date": "2013-11-15T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59676,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.250Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.264Z",
- "amount": 0.1288,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.84,
- "invoice": 54,
- "date": "2013-11-15T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59677,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.291Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.272Z",
- "amount": 0.112,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 54,
- "date": "2013-11-15T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59678,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.332Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.280Z",
- "amount": 0.1568,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.24,
- "invoice": 54,
- "date": "2013-11-16T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59679,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.374Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.289Z",
- "amount": 0.1848,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.64,
- "invoice": 54,
- "date": "2013-11-16T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59680,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.415Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.297Z",
- "amount": 0.2912,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 54,
- "date": "2013-11-16T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59681,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.457Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.305Z",
- "amount": 0.2128,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 54,
- "date": "2013-11-17T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59682,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.498Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.314Z",
- "amount": 0.1624,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.32,
- "invoice": 54,
- "date": "2013-11-17T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59683,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.539Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.322Z",
- "amount": 0.2352,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 54,
- "date": "2013-11-17T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59684,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.614Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.330Z",
- "amount": 0.1512,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.16,
- "invoice": 55,
- "date": "2013-11-18T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59685,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.655Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.339Z",
- "amount": 0.112,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 55,
- "date": "2013-11-18T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59686,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.697Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.347Z",
- "amount": 0.3024,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.32,
- "invoice": 55,
- "date": "2013-11-18T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59687,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.738Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.355Z",
- "amount": 0.2744,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 55,
- "date": "2013-11-19T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59688,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.780Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.363Z",
- "amount": 0.196,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.8,
- "invoice": 55,
- "date": "2013-11-19T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59689,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.821Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.371Z",
- "amount": 0.2856,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.08,
- "invoice": 55,
- "date": "2013-11-19T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59690,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.863Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.380Z",
+ "updated": "2013-12-18T21:29:14.818Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.818Z",
"amount": 0.28,
- "object": 103,
- "account": 12,
- "state": "invoiced",
+ "object": 119,
+ "account": 14,
+ "state": "pending",
"coreHours": 4.0,
- "invoice": 55,
- "date": "2013-11-20T06:00:00Z",
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59691,
+ "pk": 61380,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:55.904Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.388Z",
- "amount": 0.2576,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.68,
- "invoice": 55,
- "date": "2013-11-20T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59692,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.945Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.396Z",
- "amount": 0.112,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 55,
- "date": "2013-11-20T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59693,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:55.987Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.405Z",
- "amount": 0.3248,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 55,
- "date": "2013-11-21T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59694,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.028Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.413Z",
+ "updated": "2013-12-18T21:29:14.827Z",
+ "slice": 14,
+ "created": "2013-12-18T21:29:14.827Z",
"amount": 0.2352,
- "object": 103,
- "account": 12,
- "state": "invoiced",
+ "object": 119,
+ "account": 14,
+ "state": "pending",
"coreHours": 3.36,
- "invoice": 55,
- "date": "2013-11-21T14:00:00Z",
+ "invoice": null,
+ "date": "2013-12-18T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59695,
+ "pk": 61381,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.070Z",
+ "updated": "2013-12-18T21:29:16.452Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.421Z",
- "amount": 0.1904,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:14.858Z",
+ "amount": 0.252,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
- "coreHours": 2.72,
- "invoice": 55,
- "date": "2013-11-21T22:00:00Z",
+ "coreHours": 3.6,
+ "invoice": 64,
+ "date": "2013-11-18T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59696,
+ "pk": 61382,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.111Z",
+ "updated": "2013-12-18T21:29:16.494Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.429Z",
- "amount": 0.2408,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:14.868Z",
+ "amount": 0.2688,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
- "coreHours": 3.44,
- "invoice": 55,
- "date": "2013-11-22T06:00:00Z",
+ "coreHours": 3.84,
+ "invoice": 64,
+ "date": "2013-11-19T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59697,
+ "pk": 61383,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.153Z",
+ "updated": "2013-12-18T21:29:16.535Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.438Z",
- "amount": 0.1288,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:14.876Z",
+ "amount": 0.1736,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
- "coreHours": 1.84,
- "invoice": 55,
- "date": "2013-11-22T14:00:00Z",
+ "coreHours": 2.48,
+ "invoice": 64,
+ "date": "2013-11-19T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59698,
+ "pk": 61384,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.194Z",
+ "updated": "2013-12-18T21:29:16.576Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.446Z",
- "amount": 0.2968,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 55,
- "date": "2013-11-22T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59699,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.235Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.454Z",
+ "created": "2013-12-18T21:29:14.885Z",
"amount": 0.2464,
- "object": 103,
- "account": 12,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
"coreHours": 3.52,
- "invoice": 55,
- "date": "2013-11-23T06:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-19T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59700,
+ "pk": 61385,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.277Z",
+ "updated": "2013-12-18T21:29:16.618Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.463Z",
+ "created": "2013-12-18T21:29:14.893Z",
"amount": 0.196,
- "object": 103,
- "account": 12,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
"coreHours": 2.8,
- "invoice": 55,
- "date": "2013-11-23T14:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-20T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59701,
+ "pk": 61386,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.318Z",
+ "updated": "2013-12-18T21:29:16.659Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.471Z",
- "amount": 0.28,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 55,
- "date": "2013-11-23T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59702,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.360Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.479Z",
- "amount": 0.2016,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 55,
- "date": "2013-11-24T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59703,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.401Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.487Z",
- "amount": 0.1792,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 55,
- "date": "2013-11-24T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59704,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.442Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.496Z",
- "amount": 0.2128,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 55,
- "date": "2013-11-24T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59705,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.492Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.504Z",
- "amount": 0.2016,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.88,
- "invoice": 56,
- "date": "2013-11-25T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59706,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.534Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.512Z",
- "amount": 0.1456,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 56,
- "date": "2013-11-25T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59707,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.575Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.521Z",
- "amount": 0.2688,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 56,
- "date": "2013-11-25T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59708,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.616Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.529Z",
- "amount": 0.336,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.8,
- "invoice": 56,
- "date": "2013-11-26T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59709,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.659Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.537Z",
- "amount": 0.112,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 56,
- "date": "2013-11-26T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59710,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.701Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.545Z",
- "amount": 0.2968,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.24,
- "invoice": 56,
- "date": "2013-11-26T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59711,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.742Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.554Z",
+ "created": "2013-12-18T21:29:14.901Z",
"amount": 0.1232,
- "object": 103,
- "account": 12,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
"coreHours": 1.76,
- "invoice": 56,
- "date": "2013-11-27T06:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-20T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59712,
+ "pk": 61387,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:56.784Z",
+ "updated": "2013-12-18T21:29:16.700Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.562Z",
- "amount": 0.3192,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 56,
- "date": "2013-11-27T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59713,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.825Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.570Z",
- "amount": 0.2072,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 56,
- "date": "2013-11-27T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59714,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.867Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.579Z",
- "amount": 0.1624,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.32,
- "invoice": 56,
- "date": "2013-11-28T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59715,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.908Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.587Z",
- "amount": 0.1456,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.08,
- "invoice": 56,
- "date": "2013-11-28T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59716,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.949Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.595Z",
- "amount": 0.112,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 1.6,
- "invoice": 56,
- "date": "2013-11-28T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59717,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:56.991Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.603Z",
- "amount": 0.2688,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.84,
- "invoice": 56,
- "date": "2013-11-29T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59718,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.032Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.612Z",
+ "created": "2013-12-18T21:29:14.910Z",
"amount": 0.14,
- "object": 103,
- "account": 12,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
"coreHours": 2.0,
- "invoice": 56,
- "date": "2013-11-29T14:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-20T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59719,
+ "pk": 61388,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.074Z",
+ "updated": "2013-12-18T21:29:16.742Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.620Z",
- "amount": 0.1288,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:14.918Z",
+ "amount": 0.1624,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
- "coreHours": 1.84,
- "invoice": 56,
- "date": "2013-11-29T22:00:00Z",
+ "coreHours": 2.32,
+ "invoice": 64,
+ "date": "2013-11-21T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59720,
+ "pk": 61389,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:57.148Z",
+ "updated": "2013-12-18T21:29:16.783Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.628Z",
- "amount": 0.1736,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.48,
- "invoice": 56,
- "date": "2013-11-30T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59721,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.190Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.637Z",
- "amount": 0.2464,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.52,
- "invoice": 56,
- "date": "2013-11-30T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59722,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.231Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.645Z",
- "amount": 0.2184,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.12,
- "invoice": 56,
- "date": "2013-11-30T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59723,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.272Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.653Z",
- "amount": 0.2744,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 56,
- "date": "2013-12-01T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59724,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.314Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.661Z",
- "amount": 0.2744,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 56,
- "date": "2013-12-01T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59725,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.355Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.670Z",
- "amount": 0.2352,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 56,
- "date": "2013-12-01T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59726,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.405Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.678Z",
- "amount": 0.2744,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.92,
- "invoice": 57,
- "date": "2013-12-02T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59727,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.446Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.686Z",
- "amount": 0.3192,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.56,
- "invoice": 57,
- "date": "2013-12-02T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59728,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.488Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.695Z",
- "amount": 0.28,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.0,
- "invoice": 57,
- "date": "2013-12-02T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59729,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.529Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.703Z",
- "amount": 0.2912,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.16,
- "invoice": 57,
- "date": "2013-12-03T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59730,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.571Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.711Z",
- "amount": 0.252,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 57,
- "date": "2013-12-03T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59731,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.612Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.719Z",
- "amount": 0.1792,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.56,
- "invoice": 57,
- "date": "2013-12-03T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59732,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.653Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.728Z",
- "amount": 0.2408,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 57,
- "date": "2013-12-04T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59733,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.695Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.736Z",
- "amount": 0.2352,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.36,
- "invoice": 57,
- "date": "2013-12-04T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59734,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.736Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.744Z",
- "amount": 0.3248,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 4.64,
- "invoice": 57,
- "date": "2013-12-04T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59735,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.778Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.753Z",
- "amount": 0.2408,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.44,
- "invoice": 57,
- "date": "2013-12-05T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59736,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.819Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.761Z",
- "amount": 0.224,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 57,
- "date": "2013-12-05T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59737,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.861Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.769Z",
- "amount": 0.2128,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.04,
- "invoice": 57,
- "date": "2013-12-05T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59738,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.902Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.777Z",
- "amount": 0.2072,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 2.96,
- "invoice": 57,
- "date": "2013-12-06T06:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59739,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.943Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.786Z",
- "amount": 0.252,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.6,
- "invoice": 57,
- "date": "2013-12-06T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59740,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:57.985Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.794Z",
- "amount": 0.224,
- "object": 103,
- "account": 12,
- "state": "invoiced",
- "coreHours": 3.2,
- "invoice": 57,
- "date": "2013-12-06T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59741,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:58.026Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.802Z",
+ "created": "2013-12-18T21:29:14.926Z",
"amount": 0.196,
- "object": 103,
- "account": 12,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
"coreHours": 2.8,
- "invoice": 57,
- "date": "2013-12-07T06:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-21T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59742,
+ "pk": 61390,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.068Z",
+ "updated": "2013-12-18T21:29:16.825Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.811Z",
+ "created": "2013-12-18T21:29:14.934Z",
+ "amount": 0.196,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 64,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61391,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.866Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:14.943Z",
+ "amount": 0.1792,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 64,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61392,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.908Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:14.951Z",
+ "amount": 0.168,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 64,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61393,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.949Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:14.959Z",
+ "amount": 0.1624,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 64,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61394,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.990Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:14.968Z",
+ "amount": 0.2968,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 64,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61395,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.032Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:14.976Z",
+ "amount": 0.3136,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 64,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61396,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.073Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:14.984Z",
+ "amount": 0.2576,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 64,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61397,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.115Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:14.992Z",
+ "amount": 0.196,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 64,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61398,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.156Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.001Z",
+ "amount": 0.2912,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 64,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61399,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.198Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.009Z",
"amount": 0.2352,
- "object": 103,
- "account": 12,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
"coreHours": 3.36,
- "invoice": 57,
- "date": "2013-12-07T14:00:00Z",
+ "invoice": 64,
+ "date": "2013-11-24T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59743,
+ "pk": 61400,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.109Z",
+ "updated": "2013-12-18T21:29:17.264Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.819Z",
- "amount": 0.2408,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:15.017Z",
+ "amount": 0.1176,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
- "coreHours": 3.44,
- "invoice": 57,
- "date": "2013-12-07T22:00:00Z",
+ "coreHours": 1.68,
+ "invoice": 65,
+ "date": "2013-11-25T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59744,
+ "pk": 61401,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.151Z",
+ "updated": "2013-12-18T21:29:17.328Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.827Z",
- "amount": 0.3304,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:15.025Z",
+ "amount": 0.3024,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
- "coreHours": 4.72,
- "invoice": 57,
- "date": "2013-12-08T06:00:00Z",
+ "coreHours": 4.32,
+ "invoice": 65,
+ "date": "2013-11-25T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59745,
+ "pk": 61402,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.192Z",
+ "updated": "2013-12-18T21:29:17.369Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.835Z",
+ "created": "2013-12-18T21:29:15.034Z",
+ "amount": 0.3136,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 65,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61403,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.410Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.042Z",
+ "amount": 0.2744,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 65,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61404,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.452Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.050Z",
"amount": 0.336,
- "object": 103,
- "account": 12,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
"coreHours": 4.8,
- "invoice": 57,
- "date": "2013-12-08T14:00:00Z",
+ "invoice": 65,
+ "date": "2013-11-26T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59746,
+ "pk": 61405,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:58.233Z",
+ "updated": "2013-12-18T21:29:17.493Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.844Z",
- "amount": 0.2464,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:15.059Z",
+ "amount": 0.2184,
+ "object": 120,
+ "account": 14,
"state": "invoiced",
- "coreHours": 3.52,
- "invoice": 57,
- "date": "2013-12-08T22:00:00Z",
+ "coreHours": 3.12,
+ "invoice": 65,
+ "date": "2013-11-26T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59747,
+ "pk": 61406,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.852Z",
+ "updated": "2013-12-18T21:29:17.609Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.852Z",
- "amount": 0.252,
- "object": 103,
- "account": 12,
- "state": "pending",
- "coreHours": 3.6,
- "invoice": null,
- "date": "2013-12-09T06:00:00Z",
+ "created": "2013-12-18T21:29:15.067Z",
+ "amount": 0.1176,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 65,
+ "date": "2013-11-27T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59748,
+ "pk": 61407,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.860Z",
+ "updated": "2013-12-18T21:29:17.651Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.860Z",
- "amount": 0.3304,
- "object": 103,
- "account": 12,
- "state": "pending",
- "coreHours": 4.72,
- "invoice": null,
- "date": "2013-12-09T14:00:00Z",
+ "created": "2013-12-18T21:29:15.075Z",
+ "amount": 0.196,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 65,
+ "date": "2013-11-27T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59749,
+ "pk": 61408,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.869Z",
+ "updated": "2013-12-18T21:29:17.692Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.869Z",
- "amount": 0.1344,
- "object": 103,
- "account": 12,
- "state": "pending",
- "coreHours": 1.92,
- "invoice": null,
- "date": "2013-12-09T22:00:00Z",
+ "created": "2013-12-18T21:29:15.084Z",
+ "amount": 0.1512,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.16,
+ "invoice": 65,
+ "date": "2013-11-27T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59750,
+ "pk": 61409,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.877Z",
+ "updated": "2013-12-18T21:29:17.733Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.877Z",
+ "created": "2013-12-18T21:29:15.092Z",
+ "amount": 0.196,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 65,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61410,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.775Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.100Z",
+ "amount": 0.2128,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 65,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61411,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.816Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.108Z",
+ "amount": 0.3192,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.56,
+ "invoice": 65,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61412,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.858Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.117Z",
"amount": 0.224,
- "object": 103,
- "account": 12,
- "state": "pending",
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
"coreHours": 3.2,
- "invoice": null,
- "date": "2013-12-10T06:00:00Z",
+ "invoice": 65,
+ "date": "2013-11-29T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59751,
+ "pk": 61413,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.885Z",
+ "updated": "2013-12-18T21:29:17.899Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.885Z",
+ "created": "2013-12-18T21:29:15.125Z",
+ "amount": 0.1624,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 65,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61414,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.940Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.133Z",
+ "amount": 0.336,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 65,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61415,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.982Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.142Z",
+ "amount": 0.1288,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 65,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61416,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.023Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.150Z",
+ "amount": 0.2016,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 65,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61417,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.065Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.158Z",
+ "amount": 0.2296,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 65,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61418,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.106Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.166Z",
+ "amount": 0.1568,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 65,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61419,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.148Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.175Z",
+ "amount": 0.2912,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 65,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61420,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.189Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.183Z",
+ "amount": 0.1176,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 65,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61421,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.239Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.191Z",
+ "amount": 0.14,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 66,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61422,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.280Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.200Z",
+ "amount": 0.1456,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 66,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61423,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.321Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.208Z",
+ "amount": 0.1848,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 66,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61424,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.363Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.216Z",
+ "amount": 0.2688,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 66,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61425,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.404Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.224Z",
+ "amount": 0.252,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 66,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61426,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.446Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.233Z",
+ "amount": 0.3304,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 66,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61427,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.487Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.241Z",
+ "amount": 0.2968,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 66,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61428,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.529Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.249Z",
+ "amount": 0.2072,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 66,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61429,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.570Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.258Z",
+ "amount": 0.2408,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 66,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61430,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.611Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.266Z",
+ "amount": 0.196,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 66,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61431,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.653Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.274Z",
+ "amount": 0.1568,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 66,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61432,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.694Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.282Z",
+ "amount": 0.1792,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 66,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61433,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.736Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.291Z",
+ "amount": 0.14,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 66,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61434,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.777Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.299Z",
+ "amount": 0.1904,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 66,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61435,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.819Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.307Z",
+ "amount": 0.1568,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 66,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61436,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.860Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.315Z",
+ "amount": 0.196,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 66,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61437,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.901Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.324Z",
+ "amount": 0.1624,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 66,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61438,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.943Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.332Z",
+ "amount": 0.2912,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 66,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61439,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.984Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.340Z",
+ "amount": 0.2352,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 66,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61440,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.026Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.348Z",
+ "amount": 0.1736,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 66,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61441,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.067Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.357Z",
+ "amount": 0.336,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 66,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61442,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.117Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.365Z",
+ "amount": 0.3136,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 67,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61443,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.158Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.373Z",
+ "amount": 0.2744,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 67,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61444,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.200Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.382Z",
+ "amount": 0.1176,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 67,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61445,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.241Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.390Z",
+ "amount": 0.1456,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 67,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61446,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.283Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.398Z",
+ "amount": 0.1344,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 67,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61447,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.324Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.407Z",
+ "amount": 0.1456,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 67,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61448,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.365Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.415Z",
+ "amount": 0.112,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 67,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61449,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.407Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.423Z",
+ "amount": 0.14,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 67,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61450,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.448Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.431Z",
+ "amount": 0.2744,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 67,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61451,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.490Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.440Z",
+ "amount": 0.2408,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 67,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61452,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.531Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.448Z",
+ "amount": 0.1848,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 67,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61453,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.572Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.456Z",
+ "amount": 0.308,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 67,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61454,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.614Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.464Z",
+ "amount": 0.1568,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 67,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61455,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.655Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.473Z",
+ "amount": 0.14,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 67,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61456,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.697Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.481Z",
+ "amount": 0.1568,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 67,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61457,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.738Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.489Z",
+ "amount": 0.336,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 67,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61458,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.779Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.498Z",
+ "amount": 0.2072,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 67,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61459,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.829Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.506Z",
+ "amount": 0.2688,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 67,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61460,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.871Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.516Z",
+ "amount": 0.3248,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 67,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61461,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.912Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.524Z",
+ "amount": 0.1624,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 67,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61462,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.953Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.533Z",
+ "amount": 0.1176,
+ "object": 120,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.68,
+ "invoice": 67,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61463,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:15.541Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.541Z",
+ "amount": 0.3192,
+ "object": 120,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 4.56,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61464,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:15.549Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.549Z",
+ "amount": 0.3136,
+ "object": 120,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 4.48,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61465,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:15.557Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.557Z",
+ "amount": 0.1456,
+ "object": 120,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 2.08,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61466,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:15.566Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.566Z",
+ "amount": 0.28,
+ "object": 120,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 4.0,
+ "invoice": null,
+ "date": "2013-12-17T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61467,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:15.574Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.574Z",
+ "amount": 0.2072,
+ "object": 120,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 2.96,
+ "invoice": null,
+ "date": "2013-12-17T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61468,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:15.582Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.582Z",
+ "amount": 0.2352,
+ "object": 120,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 3.36,
+ "invoice": null,
+ "date": "2013-12-17T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61469,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:15.591Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.590Z",
+ "amount": 0.336,
+ "object": 120,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 4.8,
+ "invoice": null,
+ "date": "2013-12-18T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61470,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:15.599Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.599Z",
"amount": 0.1232,
- "object": 103,
- "account": 12,
+ "object": 120,
+ "account": 14,
"state": "pending",
"coreHours": 1.76,
"invoice": null,
- "date": "2013-12-10T14:00:00Z",
+ "date": "2013-12-18T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59752,
+ "pk": 61471,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.894Z",
+ "updated": "2013-12-18T21:29:16.460Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.893Z",
- "amount": 0.3304,
- "object": 103,
- "account": 12,
- "state": "pending",
- "coreHours": 4.72,
- "invoice": null,
- "date": "2013-12-10T22:00:00Z",
+ "created": "2013-12-18T21:29:15.614Z",
+ "amount": 0.1848,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 64,
+ "date": "2013-11-18T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59753,
+ "pk": 61472,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.902Z",
+ "updated": "2013-12-18T21:29:16.502Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.902Z",
+ "created": "2013-12-18T21:29:15.624Z",
+ "amount": 0.2464,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 64,
+ "date": "2013-11-19T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61473,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.543Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.632Z",
+ "amount": 0.1456,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 64,
+ "date": "2013-11-19T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61474,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.585Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.640Z",
+ "amount": 0.2184,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 64,
+ "date": "2013-11-19T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61475,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.626Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.649Z",
+ "amount": 0.252,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 64,
+ "date": "2013-11-20T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61476,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.667Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.657Z",
+ "amount": 0.2352,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.36,
+ "invoice": 64,
+ "date": "2013-11-20T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61477,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.709Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.665Z",
+ "amount": 0.2408,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 64,
+ "date": "2013-11-20T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61478,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.750Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.673Z",
+ "amount": 0.168,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 64,
+ "date": "2013-11-21T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61479,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.792Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.682Z",
+ "amount": 0.1904,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 64,
+ "date": "2013-11-21T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61480,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.833Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.690Z",
+ "amount": 0.14,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.0,
+ "invoice": 64,
+ "date": "2013-11-21T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61481,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.874Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.698Z",
+ "amount": 0.3248,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 64,
+ "date": "2013-11-22T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61482,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.916Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.707Z",
+ "amount": 0.2072,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 64,
+ "date": "2013-11-22T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61483,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.957Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.715Z",
"amount": 0.1736,
- "object": 103,
- "account": 12,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 64,
+ "date": "2013-11-22T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61484,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.999Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.723Z",
+ "amount": 0.1904,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.72,
+ "invoice": 64,
+ "date": "2013-11-23T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61485,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.040Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.731Z",
+ "amount": 0.2744,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 64,
+ "date": "2013-11-23T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61486,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.081Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.740Z",
+ "amount": 0.2184,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 64,
+ "date": "2013-11-23T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61487,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.123Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.748Z",
+ "amount": 0.2912,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 64,
+ "date": "2013-11-24T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61488,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.164Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.756Z",
+ "amount": 0.3136,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 64,
+ "date": "2013-11-24T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61489,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.206Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.765Z",
+ "amount": 0.168,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.4,
+ "invoice": 64,
+ "date": "2013-11-24T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61490,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.278Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.773Z",
+ "amount": 0.224,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 65,
+ "date": "2013-11-25T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61491,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.336Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.781Z",
+ "amount": 0.2856,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 65,
+ "date": "2013-11-25T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61492,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.377Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.789Z",
+ "amount": 0.336,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.8,
+ "invoice": 65,
+ "date": "2013-11-25T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61493,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.419Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.798Z",
+ "amount": 0.1736,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.48,
+ "invoice": 65,
+ "date": "2013-11-26T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61494,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.460Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.806Z",
+ "amount": 0.1792,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 65,
+ "date": "2013-11-26T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61495,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.501Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.814Z",
+ "amount": 0.1288,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 65,
+ "date": "2013-11-26T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61496,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.618Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.822Z",
+ "amount": 0.2744,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.92,
+ "invoice": 65,
+ "date": "2013-11-27T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61497,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.659Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.831Z",
+ "amount": 0.196,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 65,
+ "date": "2013-11-27T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61498,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.700Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.839Z",
+ "amount": 0.2296,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 65,
+ "date": "2013-11-27T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61499,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.742Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.847Z",
+ "amount": 0.1288,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.84,
+ "invoice": 65,
+ "date": "2013-11-28T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61500,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.783Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.856Z",
+ "amount": 0.2912,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 65,
+ "date": "2013-11-28T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61501,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.824Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.864Z",
+ "amount": 0.2464,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 65,
+ "date": "2013-11-28T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61502,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.866Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.872Z",
+ "amount": 0.224,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 65,
+ "date": "2013-11-29T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61503,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.907Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.880Z",
+ "amount": 0.2408,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 65,
+ "date": "2013-11-29T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61504,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.949Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.889Z",
+ "amount": 0.1456,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 65,
+ "date": "2013-11-29T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61505,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:17.990Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.897Z",
+ "amount": 0.1848,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 65,
+ "date": "2013-11-30T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61506,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.032Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.905Z",
+ "amount": 0.2576,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.68,
+ "invoice": 65,
+ "date": "2013-11-30T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61507,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.073Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.914Z",
+ "amount": 0.2128,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.04,
+ "invoice": 65,
+ "date": "2013-11-30T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61508,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.114Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.922Z",
+ "amount": 0.3248,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 65,
+ "date": "2013-12-01T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61509,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.156Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.930Z",
+ "amount": 0.224,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 65,
+ "date": "2013-12-01T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61510,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.197Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.938Z",
+ "amount": 0.3136,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 65,
+ "date": "2013-12-01T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61511,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.247Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.947Z",
+ "amount": 0.2912,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.16,
+ "invoice": 66,
+ "date": "2013-12-02T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61512,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.288Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.955Z",
+ "amount": 0.252,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 66,
+ "date": "2013-12-02T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61513,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.330Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.963Z",
+ "amount": 0.2968,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 66,
+ "date": "2013-12-02T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61514,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.371Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.972Z",
+ "amount": 0.1568,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 66,
+ "date": "2013-12-03T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61515,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.413Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.980Z",
+ "amount": 0.3024,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 66,
+ "date": "2013-12-03T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61516,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.454Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.988Z",
+ "amount": 0.196,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.8,
+ "invoice": 66,
+ "date": "2013-12-03T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61517,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.496Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:15.997Z",
+ "amount": 0.2968,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.24,
+ "invoice": 66,
+ "date": "2013-12-04T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61518,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.537Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.005Z",
+ "amount": 0.3304,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 66,
+ "date": "2013-12-04T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61519,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.578Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.013Z",
+ "amount": 0.1848,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 66,
+ "date": "2013-12-04T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61520,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.620Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.021Z",
+ "amount": 0.2408,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.44,
+ "invoice": 66,
+ "date": "2013-12-05T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61521,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.661Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.030Z",
+ "amount": 0.2464,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.52,
+ "invoice": 66,
+ "date": "2013-12-05T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61522,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.703Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.038Z",
+ "amount": 0.28,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 66,
+ "date": "2013-12-05T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61523,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.744Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.046Z",
+ "amount": 0.1848,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.64,
+ "invoice": 66,
+ "date": "2013-12-06T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61524,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.785Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.054Z",
+ "amount": 0.308,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 66,
+ "date": "2013-12-06T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61525,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.827Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.063Z",
+ "amount": 0.3248,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.64,
+ "invoice": 66,
+ "date": "2013-12-06T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61526,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.868Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.071Z",
+ "amount": 0.112,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.6,
+ "invoice": 66,
+ "date": "2013-12-07T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61527,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.910Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.079Z",
+ "amount": 0.252,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 66,
+ "date": "2013-12-07T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61528,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.951Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.088Z",
+ "amount": 0.308,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 66,
+ "date": "2013-12-07T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61529,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:18.993Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.096Z",
+ "amount": 0.3304,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 66,
+ "date": "2013-12-08T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61530,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.034Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.104Z",
+ "amount": 0.2296,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 66,
+ "date": "2013-12-08T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61531,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.075Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.112Z",
+ "amount": 0.3024,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.32,
+ "invoice": 66,
+ "date": "2013-12-08T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61532,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.125Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.121Z",
+ "amount": 0.1456,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 67,
+ "date": "2013-12-09T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61533,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.167Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.129Z",
+ "amount": 0.1456,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 67,
+ "date": "2013-12-09T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61534,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.208Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.137Z",
+ "amount": 0.2184,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 67,
+ "date": "2013-12-09T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61535,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.249Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.146Z",
+ "amount": 0.2184,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.12,
+ "invoice": 67,
+ "date": "2013-12-10T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61536,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.291Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.154Z",
+ "amount": 0.1624,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.32,
+ "invoice": 67,
+ "date": "2013-12-10T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61537,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.332Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.162Z",
+ "amount": 0.308,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.4,
+ "invoice": 67,
+ "date": "2013-12-10T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61538,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.374Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.170Z",
+ "amount": 0.1568,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.24,
+ "invoice": 67,
+ "date": "2013-12-11T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61539,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.415Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.179Z",
+ "amount": 0.2856,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.08,
+ "invoice": 67,
+ "date": "2013-12-11T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61540,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.457Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.187Z",
+ "amount": 0.3136,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.48,
+ "invoice": 67,
+ "date": "2013-12-11T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61541,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.498Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.195Z",
+ "amount": 0.224,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 67,
+ "date": "2013-12-12T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61542,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.539Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.204Z",
+ "amount": 0.2688,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.84,
+ "invoice": 67,
+ "date": "2013-12-12T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61543,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.581Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.212Z",
+ "amount": 0.224,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.2,
+ "invoice": 67,
+ "date": "2013-12-12T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61544,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.622Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.220Z",
+ "amount": 0.28,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.0,
+ "invoice": 67,
+ "date": "2013-12-13T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61545,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.664Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.228Z",
+ "amount": 0.1792,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.56,
+ "invoice": 67,
+ "date": "2013-12-13T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61546,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.705Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.237Z",
+ "amount": 0.1344,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 1.92,
+ "invoice": 67,
+ "date": "2013-12-13T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61547,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.746Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.245Z",
+ "amount": 0.2072,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.96,
+ "invoice": 67,
+ "date": "2013-12-14T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61548,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.788Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.253Z",
+ "amount": 0.252,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.6,
+ "invoice": 67,
+ "date": "2013-12-14T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61549,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.837Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.262Z",
+ "amount": 0.2296,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 3.28,
+ "invoice": 67,
+ "date": "2013-12-14T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61550,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.879Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.270Z",
+ "amount": 0.1456,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.08,
+ "invoice": 67,
+ "date": "2013-12-15T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61551,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.920Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.278Z",
+ "amount": 0.3304,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 4.72,
+ "invoice": 67,
+ "date": "2013-12-15T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61552,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:19.962Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.286Z",
+ "amount": 0.2016,
+ "object": 121,
+ "account": 14,
+ "state": "invoiced",
+ "coreHours": 2.88,
+ "invoice": 67,
+ "date": "2013-12-15T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61553,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.295Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.295Z",
+ "amount": 0.2128,
+ "object": 121,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 3.04,
+ "invoice": null,
+ "date": "2013-12-16T05:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61554,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.303Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.303Z",
+ "amount": 0.3192,
+ "object": 121,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 4.56,
+ "invoice": null,
+ "date": "2013-12-16T13:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61555,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.311Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.311Z",
+ "amount": 0.1232,
+ "object": 121,
+ "account": 14,
+ "state": "pending",
+ "coreHours": 1.76,
+ "invoice": null,
+ "date": "2013-12-16T21:00:00Z",
+ "kind": "besteffort"
+ }
+},
+{
+ "pk": 61556,
+ "model": "core.charge",
+ "fields": {
+ "updated": "2013-12-18T21:29:16.320Z",
+ "slice": 15,
+ "created": "2013-12-18T21:29:16.320Z",
+ "amount": 0.1736,
+ "object": 121,
+ "account": 14,
"state": "pending",
"coreHours": 2.48,
"invoice": null,
- "date": "2013-12-11T06:00:00Z",
+ "date": "2013-12-17T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59754,
+ "pk": 61557,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.910Z",
+ "updated": "2013-12-18T21:29:16.328Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.910Z",
- "amount": 0.28,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:16.328Z",
+ "amount": 0.1792,
+ "object": 121,
+ "account": 14,
"state": "pending",
- "coreHours": 4.0,
+ "coreHours": 2.56,
"invoice": null,
- "date": "2013-12-11T14:00:00Z",
+ "date": "2013-12-17T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59755,
+ "pk": 61558,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.918Z",
+ "updated": "2013-12-18T21:29:16.336Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.918Z",
- "amount": 0.2464,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:16.336Z",
+ "amount": 0.112,
+ "object": 121,
+ "account": 14,
"state": "pending",
- "coreHours": 3.52,
+ "coreHours": 1.6,
"invoice": null,
- "date": "2013-12-11T22:00:00Z",
+ "date": "2013-12-17T21:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59756,
+ "pk": 61559,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.927Z",
+ "updated": "2013-12-18T21:29:16.344Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.927Z",
- "amount": 0.1288,
- "object": 103,
- "account": 12,
+ "created": "2013-12-18T21:29:16.344Z",
+ "amount": 0.196,
+ "object": 121,
+ "account": 14,
"state": "pending",
- "coreHours": 1.84,
+ "coreHours": 2.8,
"invoice": null,
- "date": "2013-12-12T06:00:00Z",
+ "date": "2013-12-18T05:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59757,
+ "pk": 61560,
"model": "core.charge",
"fields": {
- "updated": "2013-12-13T22:19:54.935Z",
+ "updated": "2013-12-18T21:29:16.353Z",
"slice": 15,
- "created": "2013-12-13T22:19:54.935Z",
- "amount": 0.168,
- "object": 103,
- "account": 12,
- "state": "pending",
- "coreHours": 2.4,
- "invoice": null,
- "date": "2013-12-12T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59758,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.943Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.943Z",
- "amount": 0.1512,
- "object": 103,
- "account": 12,
- "state": "pending",
- "coreHours": 2.16,
- "invoice": null,
- "date": "2013-12-12T22:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 59759,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.951Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.951Z",
+ "created": "2013-12-18T21:29:16.353Z",
"amount": 0.252,
- "object": 103,
- "account": 12,
+ "object": 121,
+ "account": 14,
"state": "pending",
"coreHours": 3.6,
"invoice": null,
- "date": "2013-12-13T06:00:00Z",
+ "date": "2013-12-18T13:00:00Z",
"kind": "besteffort"
}
},
{
- "pk": 59760,
- "model": "core.charge",
- "fields": {
- "updated": "2013-12-13T22:19:54.960Z",
- "slice": 15,
- "created": "2013-12-13T22:19:54.960Z",
- "amount": 0.336,
- "object": 103,
- "account": 12,
- "state": "pending",
- "coreHours": 4.8,
- "invoice": null,
- "date": "2013-12-13T14:00:00Z",
- "kind": "besteffort"
- }
-},
-{
- "pk": 7,
- "model": "requestrouter.requestrouterservice",
- "fields": {
- "behindNat": false,
- "defaultAction": "best",
- "defaultTTL": 30,
- "lastResortAction": "random",
- "maxAnswers": 3
- }
-},
-{
- "pk": 6,
- "model": "hpc.hpcservice",
- "fields": {}
-},
-{
"pk": 1,
"model": "hpc.serviceprovider",
"fields": {
@@ -36979,5 +46172,99 @@
"defaultOriginServer": 3882,
"contentProvider": 35
}
+},
+{
+ "pk": 1,
+ "model": "core.siteprivilege",
+ "fields": {
+ "site": 24,
+ "updated": "2013-12-17T18:08:58.293Z",
+ "role": 1,
+ "user": 15,
+ "created": "2013-12-17T18:08:58.293Z"
+ }
+},
+
+{
+ "pk": 5,
+ "model": "syndicate.syndicateservice",
+ "fields": {}
+},
+{
+ "pk": 1,
+ "model": "syndicate.syndicateuser",
+ "fields": {
+ "max_RGs": 100,
+ "is_admin": true,
+ "user": 6,
+ "max_AGs": 100,
+ "max_UGs": 100,
+ "max_volumes": 100
+ }
+},
+{
+ "pk": 2,
+ "model": "syndicate.syndicateuser",
+ "fields": {
+ "max_RGs": 500,
+ "is_admin": false,
+ "user": 13,
+ "max_AGs": 10,
+ "max_UGs": 500,
+ "max_volumes": 1
+ }
+},
+{
+ "pk": 1,
+ "model": "syndicate.volume",
+ "fields": {
+ "description": "GenBank dataset snapshot from Nov. 2013",
+ "blocksize": 61440,
+ "metadata_private_key": "",
+ "default_gateway_caps": "3",
+ "private": false,
+ "file_quota": -1,
+ "api_public_key": "",
+ "owner_id": 1,
+ "archive": true,
+ "metadata_public_key": "",
+ "name": "GenBank-11-2013"
+ }
+},
+{
+ "pk": 2,
+ "model": "syndicate.volume",
+ "fields": {
+ "description": "Volume associated with princeton_syndicate",
+ "blocksize": 102400,
+ "metadata_private_key": "",
+ "default_gateway_caps": "31",
+ "private": true,
+ "file_quota": 1000000,
+ "api_public_key": "",
+ "owner_id": 1,
+ "archive": false,
+ "metadata_public_key": "",
+ "name": "princeton_syndicate-Volume"
+ }
+},
+{
+ "pk": 1,
+ "model": "syndicate.volumeaccessright",
+ "fields": {
+ "volume": 1,
+ "gateway_caps": "3",
+ "owner_id": 1
+ }
+},
+{
+ "pk": 1,
+ "model": "syndicate.volumeaccessrequest",
+ "fields": {
+ "volume": 2,
+ "message": "Hi Jude, this is Siobhan. Can I join the princeton_syndicate volume with read-only permission?\r\n",
+ "gateway_caps": "3",
+ "owner_id": 2
+ }
}
]
diff --git a/planetstack/core/models/__init__.py b/planetstack/core/models/__init__.py
index b453a14..6926d90 100644
--- a/planetstack/core/models/__init__.py
+++ b/planetstack/core/models/__init__.py
@@ -6,8 +6,8 @@
from .service import ServiceAttribute
from .tag import Tag
from .role import Role
-from .deployment import Deployment
-from .site import Site
+#from .deployment import Deployment
+from .site import Site,Deployment, DeploymentRole, DeploymentPrivilege, SiteDeployments
from .user import User
from .serviceclass import ServiceClass
from .slice import Slice
@@ -19,8 +19,8 @@
from .slice import SlicePrivilege
from .site import SiteRole
from .site import SitePrivilege
-from .deployment import DeploymentRole
-from .deployment import DeploymentPrivilege
+#from .deployment import DeploymentRole
+#from .deployment import DeploymentPrivilege
from .planetstack import PlanetStackRole
from .planetstack import PlanetStackPrivilege
from .slicetag import SliceTag
diff --git a/planetstack/core/models/deployment.py b/planetstack/core/models/deployment.py
index 9a4cbe1..1e5e6dc 100644
--- a/planetstack/core/models/deployment.py
+++ b/planetstack/core/models/deployment.py
@@ -5,8 +5,14 @@
# Create your models here.
+class ManyToManyField_NoSyncdb(models.ManyToManyField):
+ def __init__(self, *args, **kwargs):
+ super(ManyToManyField_NoSyncdb, self).__init__(*args, **kwargs)
+ self.creates_table = False
+
class Deployment(PlCoreBase):
name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment")
+# sites = ManyToManyField_NoSyncdb('Site', through=Site.deployments.through, blank=True)
def __unicode__(self): return u'%s' % (self.name)
@@ -15,7 +21,6 @@
ROLE_CHOICES = (('admin','Admin'),)
role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30)
- krole_id = models.CharField(max_length=80, verbose_name="Keystone role id", null=True, blank=True)
def __unicode__(self): return u'%s' % (self.role)
diff --git a/planetstack/core/models/network.py b/planetstack/core/models/network.py
index 63a4191..72e7a5f 100644
--- a/planetstack/core/models/network.py
+++ b/planetstack/core/models/network.py
@@ -1,7 +1,7 @@
import os
import socket
from django.db import models
-from core.models import PlCoreBase, Site, Slice, Sliver, Deployment
+from core.models import PlCoreBase, Site, Slice, Sliver
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes import generic
@@ -26,8 +26,6 @@
class Network(PlCoreBase):
name = models.CharField(max_length=32)
template = models.ForeignKey(NetworkTemplate)
- deployment = models.ForeignKey(Deployment, related_name="networks", help_text="Deployment this Network belongs to")
- site = models.ForeignKey(Site, blank=True, null=True, default=None, related_name="networks", help_text="Is this an infrastructure Network at a single Site?")
subnet = models.CharField(max_length=32, blank=True)
ports = models.CharField(max_length=1024, blank=True, null=True)
labels = models.CharField(max_length=1024, blank=True, null=True)
diff --git a/planetstack/core/models/node.py b/planetstack/core/models/node.py
index 0781609..c3c2eab 100644
--- a/planetstack/core/models/node.py
+++ b/planetstack/core/models/node.py
@@ -1,8 +1,7 @@
import os
from django.db import models
from core.models import PlCoreBase
-from core.models import Site
-from core.models import Deployment
+from core.models import Site,Deployment
from core.models import Tag
from django.contrib.contenttypes import generic
diff --git a/planetstack/core/models/service.py b/planetstack/core/models/service.py
index ffa3531..289c7ff 100644
--- a/planetstack/core/models/service.py
+++ b/planetstack/core/models/service.py
@@ -6,6 +6,7 @@
enabled = models.BooleanField(default=True)
name = models.CharField(max_length=30, help_text="Service Name")
versionNumber = models.CharField(max_length=30, help_text="Version of Service Definition")
+ published = models.BooleanField(default=True)
def __unicode__(self): return u'%s' % (self.name)
diff --git a/planetstack/core/models/site.py b/planetstack/core/models/site.py
index 56f9bd0..caf5afb 100644
--- a/planetstack/core/models/site.py
+++ b/planetstack/core/models/site.py
@@ -1,13 +1,15 @@
import os
from django.db import models
from core.models import PlCoreBase
-from core.models import Deployment
+#from core.models import Deployment
from core.models import Tag
from django.contrib.contenttypes import generic
from geoposition.fields import GeopositionField
class Site(PlCoreBase):
-
+ """
+ A logical grouping of Nodes that are co-located at the same geographic location, which also typically corresponds to the Nodes' location in the physical network.
+ """
tenant_id = models.CharField(null=True, blank=True, max_length=200, help_text="Keystone tenant id")
name = models.CharField(max_length=200, help_text="Name for this Site")
site_url = models.URLField(null=True, blank=True, max_length=512, help_text="Site's Home URL Page")
@@ -19,16 +21,16 @@
is_public = models.BooleanField(default=True, help_text="Indicates the visibility of this site to other members")
abbreviated_name = models.CharField(max_length=80)
- deployments = models.ManyToManyField(Deployment, blank=True, related_name='sites')
+ deployments = models.ManyToManyField('Deployment', blank=True)
+ #deployments = models.ManyToManyField('Deployment', through='SiteDeployments', blank=True)
tags = generic.GenericRelation(Tag)
def __unicode__(self): return u'%s' % (self.name)
class SiteRole(PlCoreBase):
- ROLE_CHOICES = (('admin','Admin'),('pi','PI'),('tech','Tech'),('billing','Billing'), ('user', 'User'))
+ ROLE_CHOICES = (('admin','Admin'),('pi','PI'),('tech','Tech'),('billing','Billing'))
role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30)
- krole_id = models.CharField(max_length=80, verbose_name="Keystone role id", null=True, blank=True)
def __unicode__(self): return u'%s' % (self.role)
@@ -46,4 +48,33 @@
def delete(self, *args, **kwds):
super(SitePrivilege, self).delete(*args, **kwds)
+class Deployment(PlCoreBase):
+ name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment")
+ #sites = models.ManyToManyField('Site', through='SiteDeployments', blank=True)
+
+ def __unicode__(self): return u'%s' % (self.name)
+
+
+class DeploymentRole(PlCoreBase):
+
+ ROLE_CHOICES = (('admin','Admin'),)
+ role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30)
+
+ def __unicode__(self): return u'%s' % (self.role)
+
+class DeploymentPrivilege(PlCoreBase):
+
+ user = models.ForeignKey('User', related_name='deployment_privileges')
+ deployment = models.ForeignKey('Deployment', related_name='deployment_privileges')
+ role = models.ForeignKey('DeploymentRole')
+
+ def __unicode__(self): return u'%s %s %s' % (self.deployment, self.user, self.role)
+
+class SiteDeployments(PlCoreBase):
+ site = models.ForeignKey(Site)
+ deployment = models.ForeignKey(Deployment)
+
+ class Meta:
+ db_table = 'site_deployments'
+ #auto_created = Site
diff --git a/planetstack/core/models/slice.py b/planetstack/core/models/slice.py
index 3d18b24..1fa342a 100644
--- a/planetstack/core/models/slice.py
+++ b/planetstack/core/models/slice.py
@@ -43,10 +43,9 @@
super(Slice, self).save(*args, **kwds)
class SliceRole(PlCoreBase):
- ROLE_CHOICES = (('admin','Admin'),('default','Default'), ('user', 'User'), ('pi', 'PI'))
+ ROLE_CHOICES = (('admin','Admin'),('default','Default'))
role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30)
- krole_id = models.CharField(max_length=80, verbose_name="Keystone role id", null=True, blank=True)
def __unicode__(self): return u'%s' % (self.role)
diff --git a/planetstack/core/models/user.py b/planetstack/core/models/user.py
index 32f2078..a3b82d8 100644
--- a/planetstack/core/models/user.py
+++ b/planetstack/core/models/user.py
@@ -6,7 +6,6 @@
from django.contrib.auth.models import AbstractBaseUser, BaseUserManager
from timezones.fields import TimeZoneField
-
# Create your models here.
class UserManager(BaseUserManager):
def create_user(self, email, firstname, lastname, password=None):
@@ -70,6 +69,7 @@
is_active = models.BooleanField(default=True)
is_admin = models.BooleanField(default=True)
is_staff = models.BooleanField(default=True)
+ is_readonly = models.BooleanField(default=False)
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
@@ -82,6 +82,9 @@
USERNAME_FIELD = 'email'
REQUIRED_FIELDS = ['firstname', 'lastname']
+ def isReadOnlyUser(self):
+ return self.is_readonly
+
def get_full_name(self):
# The user is identified by their email address
return self.email
diff --git a/planetstack/core/plus/__init__.py b/planetstack/core/plus/__init__.py
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/planetstack/core/plus/__init__.py
@@ -0,0 +1 @@
+
diff --git a/planetstack/core/plus/sites.py b/planetstack/core/plus/sites.py
new file mode 100644
index 0000000..da86a10
--- /dev/null
+++ b/planetstack/core/plus/sites.py
@@ -0,0 +1,31 @@
+#sites.py
+
+from django.contrib.admin.sites import AdminSite
+
+
+class AdminMixin(object):
+ """Mixin for AdminSite to allow custom dashboard views."""
+
+ def __init__(self, *args, **kwargs):
+ return super(AdminMixin, self).__init__(*args, **kwargs)
+
+ def get_urls(self):
+ """Add our dashboard view to the admin urlconf. Deleted the default index."""
+ from django.conf.urls import patterns, url
+ from views import DashboardWelcomeView
+
+ urls = super(AdminMixin, self).get_urls()
+ del urls[0]
+ custom_url = patterns('',
+ url(r'^$', self.admin_view(DashboardWelcomeView.as_view()),
+ name="index")
+ )
+
+ return custom_url + urls
+
+
+class SitePlus(AdminMixin, AdminSite):
+ """
+ A Django AdminSite with the AdminMixin to allow registering custom
+ dashboard view.
+ """
diff --git a/planetstack/core/plus/views.py b/planetstack/core/plus/views.py
new file mode 100644
index 0000000..e5451ff
--- /dev/null
+++ b/planetstack/core/plus/views.py
@@ -0,0 +1,11 @@
+#views.py
+from django.views.generic import TemplateView
+
+
+class DashboardWelcomeView(TemplateView):
+ template_name = 'admin/dashboard/welcome.html'
+
+ def get(self, request, *args, **kwargs):
+ context = self.get_context_data(**kwargs)
+
+ return self.render_to_response(context=context)
diff --git a/planetstack/core/static/Deployments.png b/planetstack/core/static/Deployments.png
new file mode 100644
index 0000000..5d152ed
--- /dev/null
+++ b/planetstack/core/static/Deployments.png
Binary files differ
diff --git a/planetstack/core/static/Deployments_over.png b/planetstack/core/static/Deployments_over.png
new file mode 100644
index 0000000..8e2f008
--- /dev/null
+++ b/planetstack/core/static/Deployments_over.png
Binary files differ
diff --git a/planetstack/core/static/Home.png b/planetstack/core/static/Home.png
new file mode 100644
index 0000000..20eb6f0
--- /dev/null
+++ b/planetstack/core/static/Home.png
Binary files differ
diff --git a/planetstack/core/static/Home_over.png b/planetstack/core/static/Home_over.png
new file mode 100644
index 0000000..64b047d
--- /dev/null
+++ b/planetstack/core/static/Home_over.png
Binary files differ
diff --git a/planetstack/core/static/Reservations.png b/planetstack/core/static/Reservations.png
new file mode 100644
index 0000000..94a993d
--- /dev/null
+++ b/planetstack/core/static/Reservations.png
Binary files differ
diff --git a/planetstack/core/static/Reservations_over.png b/planetstack/core/static/Reservations_over.png
new file mode 100644
index 0000000..5a5835a
--- /dev/null
+++ b/planetstack/core/static/Reservations_over.png
Binary files differ
diff --git a/planetstack/core/static/Search.png b/planetstack/core/static/Search.png
new file mode 100644
index 0000000..34833a2
--- /dev/null
+++ b/planetstack/core/static/Search.png
Binary files differ
diff --git a/planetstack/core/static/Sites.png b/planetstack/core/static/Sites.png
new file mode 100644
index 0000000..fac5fa4
--- /dev/null
+++ b/planetstack/core/static/Sites.png
Binary files differ
diff --git a/planetstack/core/static/Sites_over.png b/planetstack/core/static/Sites_over.png
new file mode 100644
index 0000000..9378984
--- /dev/null
+++ b/planetstack/core/static/Sites_over.png
Binary files differ
diff --git a/planetstack/core/static/Slices.png b/planetstack/core/static/Slices.png
new file mode 100644
index 0000000..fb06041
--- /dev/null
+++ b/planetstack/core/static/Slices.png
Binary files differ
diff --git a/planetstack/core/static/Slices_over.png b/planetstack/core/static/Slices_over.png
new file mode 100644
index 0000000..441d5ae
--- /dev/null
+++ b/planetstack/core/static/Slices_over.png
Binary files differ
diff --git a/planetstack/core/static/Users.png b/planetstack/core/static/Users.png
new file mode 100644
index 0000000..7e6d096
--- /dev/null
+++ b/planetstack/core/static/Users.png
Binary files differ
diff --git a/planetstack/core/static/Users_over.png b/planetstack/core/static/Users_over.png
new file mode 100644
index 0000000..9ffb418
--- /dev/null
+++ b/planetstack/core/static/Users_over.png
Binary files differ
diff --git a/planetstack/core/static/bg.jpg b/planetstack/core/static/bg.jpg
new file mode 100644
index 0000000..9ad9e54
--- /dev/null
+++ b/planetstack/core/static/bg.jpg
Binary files differ
diff --git a/planetstack/core/static/bg2.jpg b/planetstack/core/static/bg2.jpg
new file mode 100644
index 0000000..ba8dfe4
--- /dev/null
+++ b/planetstack/core/static/bg2.jpg
Binary files differ
diff --git a/planetstack/core/static/bg_old.jpg b/planetstack/core/static/bg_old.jpg
new file mode 100644
index 0000000..aba2063
--- /dev/null
+++ b/planetstack/core/static/bg_old.jpg
Binary files differ
diff --git a/planetstack/core/static/dashboardStatic.PNG b/planetstack/core/static/dashboardStatic.PNG
new file mode 100755
index 0000000..eb3ba80
--- /dev/null
+++ b/planetstack/core/static/dashboardStatic.PNG
Binary files differ
diff --git a/planetstack/core/static/donw_arrow.png b/planetstack/core/static/donw_arrow.png
new file mode 100644
index 0000000..e727172
--- /dev/null
+++ b/planetstack/core/static/donw_arrow.png
Binary files differ
diff --git a/planetstack/core/static/favicon.png b/planetstack/core/static/favicon.png
new file mode 100644
index 0000000..d49afe0
--- /dev/null
+++ b/planetstack/core/static/favicon.png
Binary files differ
diff --git a/planetstack/core/static/logo.png b/planetstack/core/static/logo.png
new file mode 100644
index 0000000..a55f86a
--- /dev/null
+++ b/planetstack/core/static/logo.png
Binary files differ
diff --git a/planetstack/core/static/logo_opague_circles.png b/planetstack/core/static/logo_opague_circles.png
new file mode 100755
index 0000000..306fc46
--- /dev/null
+++ b/planetstack/core/static/logo_opague_circles.png
Binary files differ
diff --git a/planetstack/core/static/name.png b/planetstack/core/static/name.png
new file mode 100644
index 0000000..e8145d6
--- /dev/null
+++ b/planetstack/core/static/name.png
Binary files differ
diff --git a/planetstack/core/static/name_old.png b/planetstack/core/static/name_old.png
new file mode 100644
index 0000000..0ab31a3
--- /dev/null
+++ b/planetstack/core/static/name_old.png
Binary files differ
diff --git a/planetstack/core/static/open-cloud-login-themed-light.png b/planetstack/core/static/open-cloud-login-themed-light.png
new file mode 100644
index 0000000..f926301
--- /dev/null
+++ b/planetstack/core/static/open-cloud-login-themed-light.png
Binary files differ
diff --git a/planetstack/core/static/open-cloud-login-themed-light_old.png b/planetstack/core/static/open-cloud-login-themed-light_old.png
new file mode 100644
index 0000000..af8f582
--- /dev/null
+++ b/planetstack/core/static/open-cloud-login-themed-light_old.png
Binary files differ
diff --git a/planetstack/core/static/open-cloud-themed.png b/planetstack/core/static/open-cloud-themed.png
new file mode 100644
index 0000000..82d0c8d
--- /dev/null
+++ b/planetstack/core/static/open-cloud-themed.png
Binary files differ
diff --git a/planetstack/core/static/open-cloud-themed1.png b/planetstack/core/static/open-cloud-themed1.png
new file mode 100755
index 0000000..2aefd87
--- /dev/null
+++ b/planetstack/core/static/open-cloud-themed1.png
Binary files differ
diff --git a/planetstack/core/static/open-cloud-themed2.png b/planetstack/core/static/open-cloud-themed2.png
new file mode 100644
index 0000000..975146b
--- /dev/null
+++ b/planetstack/core/static/open-cloud-themed2.png
Binary files differ
diff --git a/planetstack/core/static/open-cloud-themed_old.png b/planetstack/core/static/open-cloud-themed_old.png
new file mode 100644
index 0000000..975146b
--- /dev/null
+++ b/planetstack/core/static/open-cloud-themed_old.png
Binary files differ
diff --git a/planetstack/core/static/opencloudApp.png b/planetstack/core/static/opencloudApp.png
new file mode 100755
index 0000000..f6b0660
--- /dev/null
+++ b/planetstack/core/static/opencloudApp.png
Binary files differ
diff --git a/planetstack/core/static/password.png b/planetstack/core/static/password.png
new file mode 100644
index 0000000..131490b
--- /dev/null
+++ b/planetstack/core/static/password.png
Binary files differ
diff --git a/planetstack/core/static/password_old.png b/planetstack/core/static/password_old.png
new file mode 100644
index 0000000..8eccd01
--- /dev/null
+++ b/planetstack/core/static/password_old.png
Binary files differ
diff --git a/planetstack/core/static/planetstack.css b/planetstack/core/static/planetstack.css
index e076854..873a9d9 100644
--- a/planetstack/core/static/planetstack.css
+++ b/planetstack/core/static/planetstack.css
@@ -19,3 +19,519 @@
font-weight: bold;
margin-bottom: 5px;
}
+
+
+/*Added by Beena*/
+/*For increasing the header height*/
+.header {
+height: 90px;
+}
+
+/*For changing the background color of the left side navigation list items*/
+/*For changing the color of the left side navigation list items*/
+/*For changing the font of the left side navigation list items*/
+.left-nav>ul>li>a {
+background-color: #CDE7FF;
+font-weight: bold;
+color: #105E9E;
+font-size: 13px;
+border-bottom: none;
+}
+
+/*For giving the padding for the left side navigation*/
+.left-nav>ul {
+padding-left: 5px;
+}
+
+/*For increasing the height of left side navigation list items*/
+.left-nav>ul>li {
+padding-top:4px;
+line-height: 35px;
+width: 180px;
+}
+
+/*For changing background color of suit enter*/
+#suit-center {
+background-color: #ffffff;
+}
+
+.left-nav>ul>li.active>a {
+background-color: #448CCA;
+
+left: 10px;
+background-image: url("right_arrow.png");
+ background-position: 97% center;
+}
+
+
+.nav-tabs-suit li{
+background-color: #CDE7FF;
+/*background-color: #FFFFFF;*/
+}
+
+.nav-tabs-suit li a {
+background-color: #CDE7FF;
+font-weight: bold;
+color: #105E9E;
+border-radius: 0px;
+border: none;
+box-shadow: none;
+}
+.nav-tabs-suit li.active{
+/*Changed on Dec 11*/
+background-color: #448CCA;
+ /*background-position: 50% 100%;
+background-image:url('donw_arrow.png');*/
+}
+
+.nav-tabs-suit li.hover{
+/*Changed on Dec 11*/
+background-color: #448CCA;
+}
+
+.nav-tabs-suit li.active a {
+background-color: #448CCA;
+color:#ffffff;
+padding-top:10px;
+text-decoration:none;
+}
+
+.nav-tabs-suit li.active a:after{ /*arrow added to downarrowdiv DIV*/
+width: 0;
+height: 0;
+border-left: 5px solid transparent;
+border-right: 5px solid transparent;
+border-top: 5px solid #2f2f2f;
+font-size: 0;
+line-height: 0;
+}
+
+
+/* create an arrow that points down */
+
+
+.left-nav>ul>li.active>a:hover{
+background-color: #448CCA;
+color:#ffffff;
+/*padding-top:10px;*/
+text-decoration:none;
+}
+
+.left-nav>ul>li>a:hover{
+background-color: #448CCA;
+color:#ffffff;
+/*padding-top:10px;*/
+text-decoration:none;
+border-left: 15px solid #105E9E ;
+}
+.nav-tabs-suit li.active a:hover,.nav-tabs-suit li a:hover{
+background-color: #448CCA;
+color:#ffffff;
+padding-top:10px;
+text-decoration:none;
+}
+
+.breadcrumb li a {
+font-weight:bold;
+}
+
+.nav-tabs {
+border-bottom: 1px solid #B5D1EA;
+}
+
+.nav-tabs>li {
+margin-bottom: 0px;
+}
+
+/*.icon-home {
+background-image: url('home.png');
+background-repeat: no-repeat;
+background-position: 85%;
+}*/
+
+/*Changed Dec11*/
+
+/*
+.icon-home {
+background-image: url('home.png');
+background-repeat: no-repeat;
+background-position: 40%;
+width: 25px;
+height: 25px;
+vertical-align: middle;
+}
+*/
+
+
+.header #branding{
+height:60px;
+}
+
+#branding2{
+padding-top:60px;
+height:20px;
+width:100%;
+/*background-color: #000000;*/
+/*margin-bottom: 10px;*/
+}
+.header .header-content .date{
+padding-left:10px;
+}
+
+.header .header-content .time {
+font-weight: normal;
+}
+.header .header-content.header-content-first{
+height: 15px;
+padding-bottom: 0px;
+}
+
+.header .header-content {
+padding-bottom: 0px;
+padding: 7px 0 0 0px;
+}
+
+.header #branding {
+border-right:none;
+}
+
+.left-nav>ul>li.active>a:after {
+content: none;
+
+}
+
+.nav-quick-search{
+margin: 0px 0 0px 0px;
+padding:0 20px 0 0;
+float:right;
+}
+
+.header #branding {
+width: 100%;
+}
+
+/**
+* login page
+*/
+
+
+/*.login #wrap {
+background-color: #ffffff;
+}*/
+
+.login #content-main {
+width: 280px;
+height: 365px;
+border-radius: 0px;
+/*background: #EBF0F2;*/
+background: rgba(255,255,255,0.85);
+/*background: rgba(235,240,242,0.6);*/
+}
+
+.login #content-main h1 {
+/*background: #EBF0F2;*/
+background: url("open-cloud-login-themed-light.png") no-repeat scroll 40% center / 89% auto rgba(235, 240, 242, 0);
+/*background-position: 40%;*/
+height: 55px;
+background-repeat: no-repeat;
+font-size: 0px;
+padding-top: 70px;
+}
+.login #content-main h1 i {
+display:none;
+}
+
+.login #content-main h1 img{
+padding-left: 8px;
+}
+
+.login #content-main .control-group .control-label{
+display:none;
+}
+
+.login #content-main form input[type=text]{
+width: 94%;
+padding:4px 6px;
+border-radius: 0px;
+height: 30px;
+background-color: #E5E5E5;
+background-image: url('name.png');
+background-repeat: no-repeat;
+background-position: 95%;
+font-size: 12px;
+}
+
+.login #content-main form input[type=password] {
+ width: 94%;
+padding:4px 6px;
+font-size: 12px;
+border-radius: 0px;
+height: 30px;
+background-color: #E5E5E5;
+background-image: url('password.png');
+background-repeat: no-repeat;
+background-position: 95%;
+}
+
+.login #content-main .submit-row{
+background: #EBF0F215px;
+background: rgba(235,240,242,0.0);
+border-top:none;
+padding-top:0px;
+box-shadow: none;
+}
+
+.login #content-main .submit-row .btn-info {
+background-color : #448CCA;
+background-image: none;
+height: 40px;
+border-radius: 0px;
+width: 100%;
+margin-bottom: 4px;
+}
+#forgot_pwd{
+font-size: 11px;
+font-style: normal;
+text-decoration: none;
+}
+
+#create_acct{
+font-size: 11px;
+font-style: normal;
+text-decoration: none;
+padding-left: 45px;
+}
+
+/*Dec 11 2013*/
+
+.nav-tabs-suit li.active a{
+text-shadow: none;
+-webkit-box-shadow: none;
+-moz-box-shadow: none;
+box-shadow: none;
+}
+
+.nav-tabs>.active>a{
+border: none;
+}
+
+.nav-tabs-suit li a:hover{
+border: none;
+}
+
+.nav-tabs-suit li.active a:hover{
+border: none;
+}
+
+/*.nav-tabs-suit li.active {*/
+ /*background: transparent url('home.png') no-repeat scroll center bottom;*/
+ /*border-left: 5px solid transparent;
+border-right: 5px solid transparent;
+border-top: 5px solid #2f2f2f;
+font-size: 0;
+line-height: 0;
+width: 0;;
+height: 0;
+ margin: 0;
+}*/
+
+.login {
+background-image: url('bg.jpg');
+background-size: 100%;
+background-repeat: no-repeat;
+}
+
+
+.login #content-main {
+ float: none;
+ height: 330px;
+ margin: 100px auto 0;
+ width: 265px;
+}
+
+
+.header{
+background-color: #000000;
+background-image: url('bg2.jpg');
+background-size: 100% auto;
+}
+
+
+#wrap{
+background:none;
+}
+
+body{
+background-color:#ffffff;
+}
+
+.suit-column{
+background-color:#ffffff;
+}
+.nav-quick-search .search-query{
+border-radius:0px;
+border:none;
+box-shadow:0px;
+background-color:#282828;
+padding-left: 27px;
+}
+
+/*Added on 13th*/
+
+/*.input-icon {
+margin-right: 30px;
+}
+
+.icon-search{
+
+margin-left: -165px;
+}*/
+
+.login #content-main form {
+margin: 5px 15px 0;
+}
+
+.login {
+height: 84.5%;
+}
+
+
+.login #wrap {
+ background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
+}
+#wrap {
+ background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
+}
+#wrap {
+ background: url("../img/bg_left_white.gif") repeat-y scroll left top rgba(0, 0, 0, 0);
+}
+#wrap {
+ height: auto !important;
+ margin: 0 auto -60px;
+ min-height: 100%;
+}
+
+.forgotLink {
+ width: 45%;
+ text-align: left;
+ float: left;
+}
+
+.createAccountLink {
+ width: 55%;
+ text-align: right;
+ float: left;
+
+}
+
+.login .btn-info {
+ color: #FFF;
+}
+
+.nav-tabs > .active > a, .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
+ background-color: #448CCA;
+ color: #FFF;
+ border: none;
+}
+
+/*Added by Beena for adding the three components in dashboard*/
+.breadcrumb{
+ width: 37%;
+ display:inline-block;
+ background-color: #fff;
+
+}
+
+.nodetextbox{
+ background-color: #ededed;
+ line-height: 25px;
+ width: 150px;
+ text-align: center;
+ font-weight: bold;
+ margin-left:5px;
+ display:inline-block;
+ border:none;
+ font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
+ font-size: 13px;
+}
+
+.nodelabel{
+width: 40px;
+display: inline-block;
+border-radius: 0px;
+border:1px solid #000;
+line-height: 23px;
+text-align: center;
+}
+
+.header-content .header-column {
+ display: none;
+}
+.header .input-icon {
+ background-image: url("Search.png");
+ background-repeat: no-repeat;
+background-position:left center;
+opacity:1;
+ background-size: 100%;
+ vertical-align:middle;
+ margin-right: -30px;
+ /*margin-top: 5px;*/
+ position: relative;
+ height: 22px;
+ width: 22px;
+}
+
+.header .icon-search {
+ /*background-image: url("search.png") !important;
+ background-repeat: no-repeat !important;
+ background-size: 120% auto !important;
+ background-position: 0;*/
+}
+
+.icon-home ,.icon-deployment ,.icon-site ,.icon-slice ,.icon-user, .icon-reservation, .icon-app{
+background-position: left center;
+width:22px;
+height:22px;
+}
+
+.icon-app {
+background-image: url("opencloudApp.png");
+}
+.icon-home {
+background-image: url("Home.png");
+}
+.icon-deployment{
+background-image: url("Deployments.png");
+}
+.icon-site{
+background-image: url("Sites.png");
+}
+.icon-slice{
+background-image: url("Slices.png");
+}
+.icon-user{
+background-image: url("Users.png");
+}
+.icon-reservation{
+background-image: url("Reservations.png");
+}
+
+.left-nav>ul>li.active>a>.icon-home , .left-nav>ul>li:hover>a>.icon-home , .left-nav>ul>li.focus>a>.icon-home{
+background-image: url("Home_over.png");
+}
+
+.left-nav>ul>li.active>a>.icon-deployment,.left-nav>ul>li:hover>a>.icon-deployment,.left-nav>ul>li.focus>a>.icon-deployment{
+background-image: url("Deployments_over.png");
+}
+.left-nav>ul>li.active>a>.icon-site , .left-nav>ul>li:hover>a>.icon-site , .left-nav>ul>li.focus>a>.icon-site{
+background-image: url("Sites_over.png");
+}
+.left-nav>ul>li.active>a>.icon-slice , .left-nav>ul>li:hover>a>.icon-slice , .left-nav>ul>li.focus>a>.icon-slice {
+background-image: url("Slices_over.png");
+}
+.left-nav>ul>li.active>a>.icon-user , .left-nav>ul>li:hover>a>.icon-user , .left-nav>ul>li.focus>a>.icon-user{
+background-image: url("Users_over.png");
+}
+.left-nav>ul>li.active>a>.icon-reservation , .left-nav>ul>li:hover>a>.icon-reservation , .left-nav>ul>li.focus>a>.icon-reservation{
+background-image: url("Reservations_over.png");
+}
diff --git a/planetstack/core/static/right_arrow.png b/planetstack/core/static/right_arrow.png
new file mode 100644
index 0000000..416828e
--- /dev/null
+++ b/planetstack/core/static/right_arrow.png
Binary files differ